我正在尝试使用 Junit4 i 使用以下类
public class Example extends TestCase {
public Example(String name) {
super(name);
}
@Test
public void exampletest() {
//TO DO
}
}
@RunWith(Suite.class)
@SuiteClasses({ Example.class })
public class Tests {
TestSuite tests = new TestSuite();
tests.addTest(new Example("exampletest"));
}
它给了我没有在 junit4 异常中找到测试有人可以告诉我为什么我得到这个异常或者举一个例子怎么做?