01: package test.sample;
02:
03: import org.testng.annotations.BeforeClass;
04: import org.testng.annotations.Test;
05:
06: /**
07: * This class fails in setUp and should result in 1 failure, 1 skip
08: *
09: * @author cbeust
10: */
11: public class SetUpWithParameterTest {
12:
13: @BeforeClass
14: public void setUp(String bogusParameter) {
15: }
16:
17: @Test
18: public void test() {
19:
20: }
21: }
|