blob: c999a0823419a269ee625cf3917ed86382ce2c0b [file] [log] [blame]
package test.reports;
import org.testng.annotations.Test;
public class FailedSampleTest {
@Test
public void failed() {
throw new RuntimeException("Failing intentionally");
}
}