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