use of org.assertj.core.internal.TestDescription in project assertj-core by joel-costigliola.
the class ShouldNotHaveFailed_create_Test method should_create_error_message.
@Test
public void should_create_error_message() throws Exception {
// GIVEN
CompletableFuture<Object> future = new CompletableFuture<>();
future.completeExceptionally(new RuntimeException());
// WHEN
String error = shouldNotHaveFailed(future).create(new TestDescription("TEST"));
// THEN
assertThat(error).startsWith(format("[TEST] %nExpecting%n <CompletableFuture[Failed: java.lang.RuntimeException]%n")).contains("Caused by: java.lang.RuntimeException").endsWith(format("to not have failed.%n%s", WARNING));
}
use of org.assertj.core.internal.TestDescription in project assertj-core by joel-costigliola.
the class ShouldHaveHost_create_Test method should_create_error_message_for_uri.
@Test
public void should_create_error_message_for_uri() throws Exception {
String error = shouldHaveHost(new URI("http://assertj.org/news"), "foo.org").create(new TestDescription("TEST"));
assertThat(error).isEqualTo(format("[TEST] %n" + "Expecting host of%n" + " <http://assertj.org/news>%n" + "to be:%n" + " <\"foo.org\">%n" + "but was:%n" + " <\"assertj.org\">"));
}
use of org.assertj.core.internal.TestDescription in project assertj-core by joel-costigliola.
the class ShouldHaveHost_create_Test method should_create_error_message_for_url.
@Test
public void should_create_error_message_for_url() throws Exception {
String error = shouldHaveHost(new URL("http://assertj.org/news"), "foo.org").create(new TestDescription("TEST"));
assertThat(error).isEqualTo(format("[TEST] %n" + "Expecting host of%n" + " <http://assertj.org/news>%n" + "to be:%n" + " <\"foo.org\">%n" + "but was:%n" + " <\"assertj.org\">"));
}
use of org.assertj.core.internal.TestDescription in project assertj-core by joel-costigliola.
the class ShouldHaveParameter_create_Test method should_create_error_message_for_url_parameter_with_value_that_has_no_value.
@Test
public void should_create_error_message_for_url_parameter_with_value_that_has_no_value() throws Exception {
URL url = new URL("http://assertj.org/news?article");
String error = shouldHaveParameter(url, "article", "10", newArrayList((String) null)).create(new TestDescription("TEST"));
assertThat(error).isEqualTo(format("[TEST] %n" + "Expecting:%n" + " <http://assertj.org/news?article>%n" + "to have parameter:%n" + " <\"article\">%n" + "with value:%n" + " <\"10\">%n" + "but parameter had no value"));
}
use of org.assertj.core.internal.TestDescription in project assertj-core by joel-costigliola.
the class ShouldHaveParameter_create_Test method should_create_error_message_for_uri_parameter_with_value_that_has_no_value.
@Test
public void should_create_error_message_for_uri_parameter_with_value_that_has_no_value() throws Exception {
URI uri = new URI("http://assertj.org/news?article");
String error = shouldHaveParameter(uri, "article", "10", newArrayList((String) null)).create(new TestDescription("TEST"));
assertThat(error).isEqualTo(format("[TEST] %n" + "Expecting:%n" + " <http://assertj.org/news?article>%n" + "to have parameter:%n" + " <\"article\">%n" + "with value:%n" + " <\"10\">%n" + "but parameter had no value"));
}
Aggregations