blob: dd8b407ccd8e81de889bb5d17ed7a58bc093b1e5 [file] [log] [blame]
package org.testng.internal.conflistener;
import org.testng.annotations.BeforeSuite;
import org.testng.annotations.Test;
/**
* This class/interface
*/
public class FailingBeforeSuite {
@BeforeSuite
public void beforeSuite() {
throw new RuntimeException("Test exception");
}
@Test
public void dummytest() {
}
}