質問編集履歴
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -164,17 +164,11 @@
|
|
164
164
|
|
165
165
|
|
166
166
|
|
167
|
-
<
|
167
|
+
<path id = "junit">
|
168
|
-
|
169
|
-
|
170
|
-
|
168
|
+
|
171
|
-
|
169
|
+
<pathelement location="/home/pi/Desktop/JylLibrary/junit.jar"/>
|
172
|
-
|
173
|
-
|
174
|
-
|
170
|
+
|
175
|
-
</
|
171
|
+
</path>
|
176
|
-
|
177
|
-
|
178
172
|
|
179
173
|
|
180
174
|
|
@@ -186,7 +180,7 @@
|
|
186
180
|
|
187
181
|
<classpath>
|
188
182
|
|
189
|
-
<path
|
183
|
+
<path refid="junit"/>
|
190
184
|
|
191
185
|
</classpath>
|
192
186
|
|
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -154,6 +154,92 @@
|
|
154
154
|
|
155
155
|
|
156
156
|
|
157
|
+
|
158
|
+
|
159
|
+
試行錯誤したあと
|
160
|
+
|
161
|
+
```
|
162
|
+
|
163
|
+
<project name="Jyl Library" default="versionInfo" basedir=".">
|
164
|
+
|
165
|
+
|
166
|
+
|
167
|
+
<target name="versionInfo">
|
168
|
+
|
169
|
+
|
170
|
+
|
171
|
+
<!-- 省略 -->
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
</target>
|
176
|
+
|
177
|
+
|
178
|
+
|
179
|
+
|
180
|
+
|
181
|
+
<target name="compile" depends="versionInfo">
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
<javac srcdir="org" debug="true" includeAntRuntime="yes">
|
186
|
+
|
187
|
+
<classpath>
|
188
|
+
|
189
|
+
<path path="/home/pi/Desktop/JylLibrary/junit.jar"/>
|
190
|
+
|
191
|
+
</classpath>
|
192
|
+
|
193
|
+
</javac>
|
194
|
+
|
195
|
+
|
196
|
+
|
197
|
+
</target>
|
198
|
+
|
199
|
+
|
200
|
+
|
201
|
+
|
202
|
+
|
203
|
+
<target name="UnitTest" depends="compile">
|
204
|
+
|
205
|
+
|
206
|
+
|
207
|
+
<junit>
|
208
|
+
|
209
|
+
|
210
|
+
|
211
|
+
<formatter type="xml"/>
|
212
|
+
|
213
|
+
|
214
|
+
|
215
|
+
<classpath>
|
216
|
+
|
217
|
+
|
218
|
+
|
219
|
+
<fileset dir="." includes="junit.jar"/>
|
220
|
+
|
221
|
+
|
222
|
+
|
223
|
+
</classpath>
|
224
|
+
|
225
|
+
|
226
|
+
|
227
|
+
<test name="org.jyl.base.utest.JylFrameTest.java"/>
|
228
|
+
|
229
|
+
|
230
|
+
|
231
|
+
</junit>
|
232
|
+
|
233
|
+
|
234
|
+
|
235
|
+
</target>
|
236
|
+
|
237
|
+
|
238
|
+
|
239
|
+
</project>
|
240
|
+
|
241
|
+
```
|
242
|
+
|
157
243
|
### 試したこと
|
158
244
|
|
159
245
|
|