Package org.junit
Class TestCouldNotBeSkippedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.junit.TestCouldNotBeSkippedException
-
- All Implemented Interfaces:
Serializable
public class TestCouldNotBeSkippedException extends RuntimeException
Indicates that a test that indicated that it should be skipped could not be skipped. This can be thrown if a test uses the methods inAssume
to indicate that it should be skipped, but before processing of the test was completed, other failures occured.- Since:
- 4.13
- See Also:
Assume
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TestCouldNotBeSkippedException(AssumptionViolatedException cause)
Creates an instance using the given assumption failure.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
TestCouldNotBeSkippedException
public TestCouldNotBeSkippedException(AssumptionViolatedException cause)
Creates an instance using the given assumption failure.
-
-