代码:
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]);
}
}
结果:
跳过:createzoo org.testng.TestNGException:方法 createzoo 需要 1 个参数,但在 @Test 注释中提供了 0。