blob: d99934f8f68f69d1800d569a450ea368c01032be [file] [log] [blame]
package test.expectedexceptions;
import org.testng.annotations.ExpectedExceptions;
import org.testng.annotations.Test;
public class WrappedExpectedExceptionTest {
@Test(timeOut = 1000L)
@ExpectedExceptions({ IllegalStateException.class })
public void testTimeout() {
throw new IllegalStateException("expected failure");
}
}