01: package test.conffailure; 02: 03: import org.testng.annotations.BeforeSuite; 04: 05: public class ClassWithFailedBeforeSuite { 06: 07: @BeforeSuite 08: public void setUpShouldFail() { 09: throw new RuntimeException("Failing in setUp"); 10: } 11: 12: }