1 package test; 2 3 import org.testng.annotations.Test; 4 5 public class NestedStaticSampleTest { 6 7 @Test f()8 public void f() { 9 } 10 11 public class Nested { 12 @Test nested()13 public void nested() { 14 } 15 } 16 } 17