当使用下面的这种方法时,通过设置 jUnit with Suites。当每个 Testclass 中的所有 @BeforeClass 都将在任何测试开始执行之前执行时,我们遇到了问题。(对于每个 n TestClass 文件,@BeforeClass 运行,然后在它们执行后,它开始执行第一个 MyTest.class 文件 @Test)
这将导致我们分配大量资源和内存。我的想法是它一定是错误的,每个 @BeforeClass 不应该只在实际测试类执行之前运行,而不是在套件启动时运行?
@RunWith(Suite.class)
@Suite.SuiteClasses({ MyTests.class, Mytests2.class, n1, n2, n })
public class AllTests {
// empty
}
public class MyTests { // no extends here
@BeforeClass
public static void setUpOnce() throws InterruptedException {
...
@Test
...
public class MyTests2 { // no extends here
@BeforeClass
public static void setUpOnce() throws InterruptedException {
...
@Test
...