以下のクラスを使用して 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"));
}
それは私に No tests found in junit4 例外を与えます 誰かが私にこの例外が発生する理由を教えてくれますか、それを行う方法の例を教えてください?