我在Java中使用selenium,但当我按"运行"时,它没有运行任何东西,控制台说"测试运行:0" 我的代码或我构建它的方式有问题吗?
我的代码示例:
public class TestSuite {
public static void count() throws InterruptedException{
driver = new FirefoxDriver...etc
}
}
由于
答案 0 :(得分:1)
继续下去并不多,但有两件事:
@Test
注释。static
,但反思应该能够解决这个问题。Normaly你的测试类结构看起来应该更像这样:
public class TestClass {
@Test
public void count() {
// your actual test code
}
}