AssertionErrors
and
RuntimeExceptions
for testing
frameworks on the JVM.See: Description
Class | Description |
---|---|
ValueWrapper |
Serializable representation of a value that was used in an assertion.
|
Exception | Description |
---|---|
IncompleteExecutionException |
RuntimeException used to indicate that the execution of a test
was incomplete — for example, that the execution was entirely
skipped or aborted mid-stream. |
TestAbortedException |
Specialization of
IncompleteExecutionException used to indicate
that a test was aborted during execution (e.g., due to a failed
assumption). |
TestSkippedException |
Specialization of
IncompleteExecutionException used to indicate
that a test was skipped prior to execution (e.g., disabled
or ignored). |
Error | Description |
---|---|
AssertionFailedError |
AssertionFailedError is an initial draft for a common
base class for test-related AssertionErrors . |
MultipleFailuresError |
MultipleFailuresError is an AssertionError which
aggregates multiple AssertionErrors thrown in a given context
(i.e., typically within the invocation of a single test). |
AssertionErrors
and
RuntimeExceptions
for testing
frameworks on the JVM.