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.
我必须检查某个Class<?>对象是否包含 JUnit 测试(JUnit3 和 JUnit4)。
Class<?>
最好的方法是什么?
对类使用 Java 反射来找出答案。
对于版本 3,该类必须扩展 TestCase。
对于版本 4,您可以扫描注释,请参阅:如何获取成员变量的注释?
基本上你必须像 JUnit 一样做,也许你甚至可以重用一些现有的 JUnit 代码。