blob: 3ab85cd5ba13fec8f9b4f3d0996a2e35e683c61e [file] [log] [blame]
package test;
import org.testng.annotations.Test;
public class NestedStaticSampleTest {
@Test
public void f() {
}
public class Nested {
@Test
public void nested() {
}
}
}