01: package test.skipex;
02:
03: import java.util.Calendar;
04:
05: import org.testng.SkipException;
06: import org.testng.annotations.BeforeMethod;
07: import org.testng.annotations.Test;
08:
09: /**
10: * This class/interface
11: */
12: public class ConfigurationSkippedExceptionTest {
13: @BeforeMethod
14: public void configurationLevelSkipException() {
15: throw new SkipException("some skip message");
16: }
17:
18: @Test
19: public void dummyTest() {
20: }
21: }
|