gpt4 book ai didi

使用 Java 进行测试

转载 作者:行者123 更新时间:2023-12-04 19:12:10 26 4
gpt4 key购买 nike

在 Java 中使用 TestNG 时,出现以下错误:
“类型不匹配:无法将测试转换为注释”

注意:使用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”符号给出了错误

最佳答案

虽然导入 org.testng.annotations.*;
导入所有东西,它没有用。
但是当我只导入所需的类时,它工作正常。

之前:

import org.testng.annotations.*;  

哪个不起作用

之后:
import org.testng.annotations.BeforeTest;   
import org.testng.annotations.Test;
import org.testng.annotations.AfterTest;

哪个有效

关于使用 Java 进行测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13857354/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com