Skip to content

Commit

Permalink
Added some useful comments, cleaning up
Browse files Browse the repository at this point in the history
  • Loading branch information
bikegeek committed Sep 17, 2024
1 parent a024012 commit bc7075f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,8 @@
<pathelement location="${lib}/hamcrest-core-1.3.jar"/>
<pathelement location="${lib}/mockito-all-1.9.5.jar"/>
<pathelement location="${lib}/junit-platform-console-standalone-1.4.0.jar"/>
<pathelement location="${build}"/>

</path>

<target name="test.db.management.system">
Expand Down Expand Up @@ -335,7 +337,10 @@

<formatter type="brief" usefile="false" />
<batchtest>
<fileset dir="${test.build.dir}" includes="**/*TestMVUtil.java" />
<fileset dir="${test.build.dir}">
<include name="TestMVUtil*"/>
<!-- Include other JUnit tests as they are created-->
</fileset>
</batchtest>
</junit>
</target>
Expand Down

0 comments on commit bc7075f

Please sign in to comment.