blob: 5309ae0cc77a1350fdbe5d2014c1e5c4083fe8d6 [file] [log] [blame]
package test.methodinterceptors;
import org.testng.annotations.Test;
public class FooTest {
@Test(groups = "fast")
public void zzzfast() {}
@Test
public void slow() {}
@Test
public void a() {}
}