Search in sources :

Example 6 with Jedi

use of org.assertj.core.test.Jedi in project assertj-core by joel-costigliola.

the class IterableAssert_usingElementComparatorIgnoringFields_Test method should_be_able_to_use_a_comparator_for_specified_fields_of_elements_when_using_element_comparator_ignoring_fields.

@Test
public void should_be_able_to_use_a_comparator_for_specified_fields_of_elements_when_using_element_comparator_ignoring_fields() {
    Jedi actual = new Jedi("Yoda", "green");
    Jedi other = new Jedi("Luke", "green");
    assertThat(singletonList(actual)).usingComparatorForElementFieldsWithNames(ALWAY_EQUALS_STRING, "name").usingElementComparatorIgnoringFields("lightSaberColor").contains(other);
}
Also used : Jedi(org.assertj.core.test.Jedi) Test(org.junit.Test) IterableAssertBaseTest(org.assertj.core.api.IterableAssertBaseTest)

Example 7 with Jedi

use of org.assertj.core.test.Jedi in project assertj-core by joel-costigliola.

the class IterableAssert_usingElementComparatorOnFields_Test method should_be_able_to_use_a_comparator_for_element_fields_with_specified_type_using_element_comparator_on_fields.

@Test
public void should_be_able_to_use_a_comparator_for_element_fields_with_specified_type_using_element_comparator_on_fields() {
    Jedi actual = new Jedi("Yoda", "green");
    Jedi other = new Jedi("Luke", "blue");
    assertThat(singletonList(actual)).usingComparatorForElementFieldsWithType(ALWAY_EQUALS_STRING, String.class).usingElementComparatorOnFields("name", "lightSaberColor").contains(other);
}
Also used : Jedi(org.assertj.core.test.Jedi) Test(org.junit.Test) IterableAssertBaseTest(org.assertj.core.api.IterableAssertBaseTest)

Example 8 with Jedi

use of org.assertj.core.test.Jedi in project assertj-core by joel-costigliola.

the class IterableAssert_usingFieldByFieldElementComparator_Test method comparators_for_element_field_names_should_have_precedence_over_comparators_for_element_field_types_when_using_field_by_field_element_comparator.

@Test
public void comparators_for_element_field_names_should_have_precedence_over_comparators_for_element_field_types_when_using_field_by_field_element_comparator() {
    Comparator<String> comparator = (o1, o2) -> o1.compareTo(o2);
    Jedi actual = new Jedi("Yoda", "green");
    Jedi other = new Jedi("Luke", "green");
    assertThat(singletonList(actual)).usingComparatorForElementFieldsWithNames(ALWAY_EQUALS_STRING, "name").usingComparatorForElementFieldsWithType(comparator, String.class).usingFieldByFieldElementComparator().contains(other);
}
Also used : Iterables(org.assertj.core.internal.Iterables) ALWAY_EQUALS_STRING(org.assertj.core.test.AlwaysEqualComparator.ALWAY_EQUALS_STRING) Assertions.assertThat(org.assertj.core.api.Assertions.assertThat) ConcreteIterableAssert(org.assertj.core.api.ConcreteIterableAssert) Test(org.junit.Test) IterableElementComparisonStrategy(org.assertj.core.internal.IterableElementComparisonStrategy) Collections.singletonList(java.util.Collections.singletonList) ComparatorBasedComparisonStrategy(org.assertj.core.internal.ComparatorBasedComparisonStrategy) Objects(java.util.Objects) List(java.util.List) IterableAssertBaseTest(org.assertj.core.api.IterableAssertBaseTest) Arrays.asList(java.util.Arrays.asList) Jedi(org.assertj.core.test.Jedi) Comparator(java.util.Comparator) Lists.newArrayList(org.assertj.core.util.Lists.newArrayList) Before(org.junit.Before) Jedi(org.assertj.core.test.Jedi) Test(org.junit.Test) IterableAssertBaseTest(org.assertj.core.api.IterableAssertBaseTest)

Example 9 with Jedi

use of org.assertj.core.test.Jedi in project assertj-core by joel-costigliola.

the class IterableAssert_usingFieldByFieldElementComparator_Test method should_be_able_to_use_a_comparator_for_specified_fields_of_elements_when_using_field_by_field_element_comparator.

@Test
public void should_be_able_to_use_a_comparator_for_specified_fields_of_elements_when_using_field_by_field_element_comparator() {
    Jedi actual = new Jedi("Yoda", "green");
    Jedi other = new Jedi("Luke", "green");
    assertThat(singletonList(actual)).usingComparatorForElementFieldsWithNames(ALWAY_EQUALS_STRING, "name").usingFieldByFieldElementComparator().contains(other);
}
Also used : Jedi(org.assertj.core.test.Jedi) Test(org.junit.Test) IterableAssertBaseTest(org.assertj.core.api.IterableAssertBaseTest)

Example 10 with Jedi

use of org.assertj.core.test.Jedi in project assertj-core by joel-costigliola.

the class IterableAssert_hasOnlyOneElementSatisfying_Test method succeeds_if_iterable_has_only_one_element_and_that_element_statisfies_the_given_assertion.

@Test
public void succeeds_if_iterable_has_only_one_element_and_that_element_statisfies_the_given_assertion() {
    List<Jedi> jedis = asList(new Jedi("Yoda", "red"));
    assertThat(jedis).hasOnlyOneElementSatisfying(yoda -> assertThat(yoda.getName()).startsWith("Y"));
}
Also used : Jedi(org.assertj.core.test.Jedi) Test(org.junit.Test)

Aggregations

Jedi (org.assertj.core.test.Jedi)108 Test (org.junit.Test)104 ObjectsBaseTest (org.assertj.core.internal.ObjectsBaseTest)30 ObjectAssertBaseTest (org.assertj.core.api.ObjectAssertBaseTest)26 Comparator (java.util.Comparator)14 Assertions.assertThat (org.assertj.core.api.Assertions.assertThat)14 ALWAY_EQUALS_STRING (org.assertj.core.test.AlwaysEqualComparator.ALWAY_EQUALS_STRING)13 Before (org.junit.Before)13 AssertionInfo (org.assertj.core.api.AssertionInfo)10 AtomicReferenceArrayAssertBaseTest (org.assertj.core.api.AtomicReferenceArrayAssertBaseTest)9 IterableAssertBaseTest (org.assertj.core.api.IterableAssertBaseTest)9 ObjectArrayAssertBaseTest (org.assertj.core.api.ObjectArrayAssertBaseTest)9 ComparatorBasedComparisonStrategy (org.assertj.core.internal.ComparatorBasedComparisonStrategy)9 Lists.newArrayList (org.assertj.core.util.Lists.newArrayList)7 TextDescription (org.assertj.core.description.TextDescription)6 ExtendedByTypesComparator (org.assertj.core.internal.ExtendedByTypesComparator)6 ObjectArrays (org.assertj.core.internal.ObjectArrays)6 StandardRepresentation (org.assertj.core.presentation.StandardRepresentation)6 List (java.util.List)5 TypeComparators.defaultTypeComparators (org.assertj.core.internal.TypeComparators.defaultTypeComparators)5