1 package test.skipex;
2 
3 import org.testng.SkipException;
4 import org.testng.annotations.BeforeMethod;
5 import org.testng.annotations.Test;
6 
7 
8 /**
9  * This class/interface
10  */
11 public class ConfigurationSkippedExceptionTest {
12   @BeforeMethod
configurationLevelSkipException()13   public void configurationLevelSkipException() {
14     throw new SkipException("some skip message");
15   }
16 
17   @Test
dummyTest()18   public void dummyTest() {
19   }
20 }
21