在将 TestNG 与 Java 一起使用时,我收到以下错误:“类型不匹配:无法将测试转换为注释”
注意:使用 Eclipse IDE。构建路径包含 TestNG jar 还安装了用于 Eclipse IDE 的 TestNG 插件。
你能告诉我为什么会出现上述错误吗?
谢谢
代码:
import org.testng.annotations.*;
public class ChangeResolutionOnMainWatch {
@BeforeTest
public void startTest() throws Exception {
watch.startSelenium();
stream_delay=Integer.parseInt(System.getProperty("stream_delay").trim());
}
@Test
public void launchFalcon()throws Exception{
watch.deleteAllCookie();
watch.launchFalcon();
}
}
在上面的代码中,“@Test”符号给出了错误