static AbstractThrowableAssert<?,? extends Throwable> |
Assertions.assertThatThrownBy(ThrowableAssert.ThrowingCallable shouldRaiseThrowable) |
Allows to capture and then assert on a Throwable (easier done with lambdas).
|
static AbstractThrowableAssert<?,? extends Throwable> |
Assertions.assertThatThrownBy(ThrowableAssert.ThrowingCallable shouldRaiseThrowable,
String description,
Object... args) |
Allows to capture and then assert on a Throwable like assertThatThrownBy(ThrowingCallable) but this method
let you set the assertion description the same way you do with as(String, Object...) .
|
static AbstractThrowableAssert<?,? extends Throwable> |
AssertionsForClassTypes.assertThatThrownBy(ThrowableAssert.ThrowingCallable shouldRaiseThrowable) |
Allows to capture and then assert on a Throwable (easier done with lambdas).
|
static AbstractThrowableAssert<?,? extends Throwable> |
AssertionsForClassTypes.assertThatThrownBy(ThrowableAssert.ThrowingCallable shouldRaiseThrowable,
String description,
Object... args) |
Allows to capture and then assert on a Throwable like assertThatThrownBy(ThrowingCallable) but this method
let you set the assertion description the same way you do with as(String, Object...) .
|
static AbstractThrowableAssert<?,? extends Throwable> |
Java6Assertions.assertThatThrownBy(ThrowableAssert.ThrowingCallable shouldRaiseThrowable) |
Deprecated.
Allows to capture and then assert on a Throwable more easily when used with Java 8 lambdas.
|
static AbstractThrowableAssert<?,? extends Throwable> |
Java6Assertions.assertThatThrownBy(ThrowableAssert.ThrowingCallable shouldRaiseThrowable,
String description,
Object... args) |
Deprecated.
Allows to capture and then assert on a Throwable like assertThatThrownBy(ThrowingCallable) but this method
let you set the assertion description the same way you do with as(String, Object...) .
|
default AbstractThrowableAssert<?,? extends Throwable> |
Java6StandardSoftAssertionsProvider.assertThatThrownBy(ThrowableAssert.ThrowingCallable shouldRaiseThrowable) |
Allows to capture and then assert on a Throwable more easily when used with Java 8 lambdas.
|
default AbstractThrowableAssert<?,? extends Throwable> |
Java6StandardSoftAssertionsProvider.assertThatThrownBy(ThrowableAssert.ThrowingCallable shouldRaiseThrowable,
String description,
Object... args) |
Allows to capture and then assert on a Throwable like assertThatThrownBy(ThrowingCallable) but this method
let you set the assertion description the same way you do with as(String, Object...) .
|
default AbstractThrowableAssert<?,? extends Throwable> |
WithAssertions.assertThatThrownBy(ThrowableAssert.ThrowingCallable shouldRaiseThrowable) |
Allows to capture and then assert on a Throwable (easier done with lambdas).
|
default AbstractThrowableAssert<?,? extends Throwable> |
WithAssertions.assertThatThrownBy(ThrowableAssert.ThrowingCallable shouldRaiseThrowable,
String description,
Object... args) |
Allows to capture and then assert on a Throwable like assertThatThrownBy(ThrowingCallable) but this method
let you set the assertion description the same way you do with as(String, Object...) .
|
static <T> ObjectAssert<T> |
Assertions.assertWith(T actual,
Consumer<T> requirements) |
Uses the given instance as the instance under test for all the assertions expressed as the passed Consumer .
|
default <T> ObjectAssert<T> |
WithAssertions.assertWith(T actual,
Consumer<T> requirements) |
Uses the given instance as the instance under test for all the assertions expressed as the passed Consumer .
|
<T> T |
AbstractSoftAssertions.fail(String failureMessage) |
Fails with the given message.
|
<T> T |
AbstractSoftAssertions.fail(String failureMessage,
Object... args) |
|
<T> T |
AbstractSoftAssertions.fail(String failureMessage,
Throwable realCause) |
Fails with the given message and with the Throwable that caused the failure.
|
static <T> T |
Assertions.fail(String failureMessage) |
|
static <T> T |
Assertions.fail(String failureMessage,
Object... args) |
|
static <T> T |
Assertions.fail(String failureMessage,
Throwable realCause) |
|
static <T> T |
BDDAssertions.fail(String failureMessage) |
|
static <T> T |
BDDAssertions.fail(String failureMessage,
Object... args) |
|
static <T> T |
BDDAssertions.fail(String failureMessage,
Throwable realCause) |
|
static <T> T |
Fail.fail(String failureMessage) |
|
static <T> T |
Fail.fail(String failureMessage,
Object... args) |
|
static <T> T |
Fail.fail(String failureMessage,
Throwable realCause) |
|
default <T> T |
WithAssertions.fail(String failureMessage) |
|
default <T> T |
WithAssertions.fail(String failureMessage,
Object... args) |
|
default <T> T |
WithAssertions.fail(String failureMessage,
Throwable realCause) |
|
static <T> T |
Assertions.failBecauseExceptionWasNotThrown(Class<? extends Throwable> throwableClass) |
Throws an AssertionError with a message explaining that a Throwable of given class was expected to be thrown
but had not been.
|
static <T> T |
Fail.failBecauseExceptionWasNotThrown(Class<? extends Throwable> throwableClass) |
Throws an AssertionError with a message explaining that a Throwable of given class was expected to be thrown
but had not been.
|
default <T> T |
WithAssertions.failBecauseExceptionWasNotThrown(Class<? extends Throwable> throwableClass) |
Throws an AssertionError with a message explaining that a Throwable of given class was expected to be thrown
but had not been.
|
static <T> T |
Assertions.shouldHaveThrown(Class<? extends Throwable> throwableClass) |
Throws an AssertionError with a message explaining that a Throwable of given class was expected to be thrown
but had not been.
|
static <T> T |
BDDAssertions.shouldHaveThrown(Class<? extends Throwable> throwableClass) |
Throws an AssertionError with a message explaining that a Throwable of given class was expected to be thrown
but had not been.
|
static <T> T |
Fail.shouldHaveThrown(Class<? extends Throwable> throwableClass) |
Throws an AssertionError with a message explaining that a Throwable of given class was expected to be thrown
but had not been.
|
default <T> T |
WithAssertions.shouldHaveThrown(Class<? extends Throwable> throwableClass) |
Throws an AssertionError with a message explaining that a Throwable of given class was expected to be thrown
but had not been.
|
static AbstractThrowableAssert<?,? extends Throwable> |
BDDAssertions.thenThrownBy(ThrowableAssert.ThrowingCallable shouldRaiseThrowable) |
Allows to capture and then assert on a Throwable (easier done with lambdas).
|
static AbstractThrowableAssert<?,? extends Throwable> |
BDDAssertions.thenThrownBy(ThrowableAssert.ThrowingCallable shouldRaiseThrowable,
String description,
Object... args) |
Allows to capture and then assert on a Throwable like thenThrownBy(ThrowingCallable) but this method
let you set the assertion description the same way you do with as(String, Object...) .
|
static AbstractThrowableAssert<?,? extends Throwable> |
Java6BDDAssertions.thenThrownBy(ThrowableAssert.ThrowingCallable shouldRaiseThrowable) |
Deprecated.
Allows to capture and then assert on a Throwable more easily when used with Java 8 lambdas.
|
static AbstractThrowableAssert<?,? extends Throwable> |
Java6BDDAssertions.thenThrownBy(ThrowableAssert.ThrowingCallable shouldRaiseThrowable,
String description,
Object... args) |
Deprecated.
Allows to capture and then assert on a Throwable like thenThrownBy(ThrowingCallable) but this method
let you set the assertion description the same way you do with as(String, Object...) .
|
default AbstractThrowableAssert<?,? extends Throwable> |
Java6BDDSoftAssertionsProvider.thenThrownBy(ThrowableAssert.ThrowingCallable shouldRaiseThrowable) |
Allows to capture and then assert on a Throwable more easily when used with Java 8 lambdas.
|
default AbstractThrowableAssert<?,? extends Throwable> |
Java6BDDSoftAssertionsProvider.thenThrownBy(ThrowableAssert.ThrowingCallable shouldRaiseThrowable,
String description,
Object... args) |
Allows to capture and then assert on a Throwable like thenThrownBy(ThrowingCallable) but this method
let you set the assertion description the same way you do with as(String, Object...) .
|
static <T> ObjectAssert<T> |
BDDAssertions.thenWith(T actual,
Consumer<T> requirements) |
Uses the given instance as the instance under test for all the assertions expressed as the passed Consumer .
|