gpt4 book ai didi

testng - 方法跳过,运行时带有testng TEST注解。如何提供参数?去看了testng文档,看不懂,求指导

转载 作者:行者123 更新时间:2023-12-02 05:09:59 28 4
gpt4 key购买 nike

代码:

package tests;

import org.testng.annotations.Test;

@Test
public class SearchText {


public void createzoo(String[] args) {

String[] elems = {"lion", "tiger", "duck"};
System.out.println(elems[0]);
System.out.println(elems[1]);
System.out.println(elems[2]);
}
}

结果:

SKIPPED: createzoo org.testng.TestNGException: Method createzoo requires 1 parameters but 0 were supplied in the @Test annotation.

最佳答案

示例 createzoo 方法实际上并未使用传入的参数。由于它不使用它们,只需将消息签名更改为:

public void createzoo()

大多数 JUnit/TestNG 测试不接受任何参数。您可能会将它与具有 public static void main(String[] args) 的典型程序混淆

测试本身没有 main(),框架会为您运行测试。

仅当您确实需要它们并且该方法将对它们执行某些操作时才使用其他人提到的参数。

关于testng - 方法跳过,运行时带有testng TEST注解。如何提供参数?去看了testng文档,看不懂,求指导,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15631287/

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