1 package test.sample; 2 3 import org.testng.annotations.BeforeClass; 4 import org.testng.annotations.Test; 5 6 /** 7 * This class fails in setUp and should result in 1 failure, 1 skip 8 * 9 * @author cbeust 10 */ 11 public class SetUpWithParameterTest { 12 13 @BeforeClass setUp(String bogusParameter)14 public void setUp(String bogusParameter) { 15 } 16 17 @Test test()18 public void test() { 19 20 } 21 } 22