0

我正在执行 ant build,我们可以在构建创建的同时自动化单元测试用例吗?

4

1 回答 1

0

您必须在您的 ant 脚本中定义一个 JUnit 任务。

   <junit>
     <test name="my.test.TestCase"/>
   </junit>

有关文档,请参阅JUnit 任务

于 2013-05-22T11:40:53.093 回答