我刚刚做了一个新的框架jUnit测试。有一个简单的@Test
方法的类。
package newTry2;
import org.junit.Test;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
public class testApp {
WebDriver driver;
@Test
public void test1(){
driver = new ChromeDriver();
System.out.println("LOL");
}
}
但在Junit运行后我总是得到“没有可运行的方法”。为什么?有我的测试注释!感谢您的提示!:)