Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我编写了一个 ant 任务来在 NetBeans 中运行我的项目(我正在使用一个自由格式的 java 项目)。现在我想写一个调试任务。调试任务与运行任务几乎相同,只是添加了一些属性。我可以子类化运行任务并添加额外的属性吗?
由于 Ant 任务实现是一个 Java 类,因此 Ant 任务可以像任何其他 Java 类一样被子类化。但是,测试任务的常用方法是同时编写JUnit和AntUnit测试。
例如,看一下正在测试的 Apache Ant 源代码。