blob: 7a80c9e791ae34a80938a855fec757574b4d0d0a [file] [log] [blame]
package test.failedreporter;
import org.testng.SkipException;
import org.testng.TestNG;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
public class FailedReporterSampleTest {
@Test
public void f2() {
throw new RuntimeException();
}
@Test
public void f1() {
throw new SkipException("Skipped");
}
@Test
public void f3() {
}
}