use of org.opentest4j.AssertionFailedError in project assertj-core by joel-costigliola.
the class AbstractAssert_failWithActualExpectedAndMessage_Test method should_keep_description_set_by_user.
@Test
void should_keep_description_set_by_user() {
// WHEN
AssertionFailedError afe = expectAssertionFailedError(() -> assertion.as("user description").failWithActualExpectedAndMessage(actual, expected, "fail %d %s", 5, "times"));
// THEN
then(afe).hasMessage("[user description] fail 5 times");
then(afe.getActual().getEphemeralValue()).isSameAs(actual);
then(afe.getExpected().getEphemeralValue()).isSameAs(expected);
}
use of org.opentest4j.AssertionFailedError in project assertj-core by joel-costigliola.
the class AbstractAssert_failureWithActualExpected_Test method should_create_failure_with_message_having_args.
@Test
void should_create_failure_with_message_having_args() {
// WHEN
AssertionFailedError afe = assertion.failureWithActualExpected(actual, expected, "fail %d %s %%s", 5, "times");
// THEN
then(afe).hasMessage("fail 5 times %s");
then(afe.getActual().getEphemeralValue()).isSameAs(actual);
then(afe.getExpected().getEphemeralValue()).isSameAs(expected);
}
use of org.opentest4j.AssertionFailedError in project assertj-core by joel-costigliola.
the class AbstractAssert_failureWithActualExpected_Test method should_keep_description_set_by_user.
@Test
void should_keep_description_set_by_user() {
// WHEN
AssertionFailedError afe = assertion.as("user description").failureWithActualExpected(actual, expected, "fail %d %s", 5, "times");
// THEN
then(afe).hasMessage("[user description] fail 5 times");
then(afe.getActual().getEphemeralValue()).isSameAs(actual);
then(afe.getExpected().getEphemeralValue()).isSameAs(expected);
}
use of org.opentest4j.AssertionFailedError in project assertj-core by joel-costigliola.
the class AbstractAssert_failureWithActualExpected_Test method should_create_failure_with_simple_message.
@Test
void should_create_failure_with_simple_message() {
// WHEN
AssertionFailedError afe = assertion.failureWithActualExpected(actual, expected, "fail");
// THEN
then(afe).hasMessage("fail");
then(afe.getActual().getEphemeralValue()).isSameAs(actual);
then(afe.getExpected().getEphemeralValue()).isSameAs(expected);
}
use of org.opentest4j.AssertionFailedError in project assertj-core by joel-costigliola.
the class OptionalIntAssert_hasValue_Test method should_fail_if_OptionalInt_does_not_have_expected_value.
@Test
void should_fail_if_OptionalInt_does_not_have_expected_value() {
// GIVEN
OptionalInt actual = OptionalInt.of(5);
int expectedValue = 10;
// WHEN
AssertionFailedError error = catchThrowableOfType(() -> assertThat(actual).hasValue(expectedValue), AssertionFailedError.class);
// THEN
assertThat(error).hasMessage(shouldContain(actual, expectedValue).create());
assertThat(error.getActual().getStringRepresentation()).isEqualTo(String.valueOf(actual.getAsInt()));
assertThat(error.getExpected().getStringRepresentation()).isEqualTo(String.valueOf(expectedValue));
}
Aggregations