コード:
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 が指定されました。