Search in sources :

Example 36 with AssertionFailedError

use of org.opentest4j.AssertionFailedError in project assertj-core by joel-costigliola.

the class AbstractAssert_failWithActualExpectedAndMessage_Test method should_fail_with_simple_message.

@Test
void should_fail_with_simple_message() {
    // WHEN
    AssertionFailedError afe = expectAssertionFailedError(() -> assertion.failWithActualExpectedAndMessage(actual, expected, "fail"));
    // THEN
    then(afe).hasMessage("fail");
    then(afe.getActual().getEphemeralValue()).isSameAs(actual);
    then(afe.getExpected().getEphemeralValue()).isSameAs(expected);
}
Also used : AssertionFailedError(org.opentest4j.AssertionFailedError) Test(org.junit.jupiter.api.Test)

Example 37 with AssertionFailedError

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);
}
Also used : AssertionFailedError(org.opentest4j.AssertionFailedError) Test(org.junit.jupiter.api.Test)

Example 38 with AssertionFailedError

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);
}
Also used : AssertionFailedError(org.opentest4j.AssertionFailedError) Test(org.junit.jupiter.api.Test)

Example 39 with AssertionFailedError

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);
}
Also used : AssertionFailedError(org.opentest4j.AssertionFailedError) Test(org.junit.jupiter.api.Test)

Example 40 with AssertionFailedError

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));
}
Also used : OptionalInt(java.util.OptionalInt) AssertionFailedError(org.opentest4j.AssertionFailedError) Test(org.junit.jupiter.api.Test)

Aggregations

AssertionFailedError (org.opentest4j.AssertionFailedError)153 Test (org.junit.jupiter.api.Test)72 AssertionTestUtils.expectAssertionFailedError (org.junit.jupiter.api.AssertionTestUtils.expectAssertionFailedError)12 AlertIntegrationTest (com.synopsys.integration.alert.util.AlertIntegrationTest)8 IOException (java.io.IOException)8 URI (java.net.URI)8 WithMockUser (org.springframework.security.test.context.support.WithMockUser)8 MockHttpServletRequestBuilder (org.springframework.test.web.servlet.request.MockHttpServletRequestBuilder)8 Collectors (java.util.stream.Collectors)5 File (java.io.File)4 ArrayList (java.util.ArrayList)4 ThrowingCallable (org.assertj.core.api.ThrowableAssert.ThrowingCallable)4 GeneCentricEntry (org.uniprot.core.genecentric.GeneCentricEntry)4 GeneCentricDocument (org.uniprot.store.search.document.genecentric.GeneCentricDocument)4 JsonProcessingException (com.fasterxml.jackson.core.JsonProcessingException)3 SettingsProxyModel (com.synopsys.integration.alert.common.rest.model.SettingsProxyModel)3 Search (io.zulia.client.command.builder.Search)3 SearchResult (io.zulia.client.result.SearchResult)3 ExecutionException (java.util.concurrent.ExecutionException)3 Assertions (org.junit.jupiter.api.Assertions)3