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.
我有一个正在尝试升级的旧 Junit3 TestSuite。我在设置中看到了这个...
套件.addTest(AllSubTests.suite());
Junit 4 中的等价物是什么?
您可以像添加其他测试一样添加套件类...
@Suite.SuiteClasses({ AllSubTests.class })