use of org.assertj.core.data.Index in project assertj-core by joel-costigliola.
the class DoubleArrays_assertDoesNotContain_at_Index_Test method should_fail_if_actual_contains_value_at_index.
@Test
public void should_fail_if_actual_contains_value_at_index() {
Index index = atIndex(0);
thrown.expectAssertionError(shouldNotContainAtIndex(actual, 6d, index));
arrays.assertDoesNotContain(someInfo(), actual, 6d, index);
}
use of org.assertj.core.data.Index in project assertj-core by joel-costigliola.
the class IntArrays_assertContains_at_Index_Test method should_fail_if_actual_does_not_contain_value_at_index_according_to_custom_comparison_strategy.
@Test
public void should_fail_if_actual_does_not_contain_value_at_index_according_to_custom_comparison_strategy() {
AssertionInfo info = someInfo();
Index index = atIndex(1);
try {
arraysWithCustomComparisonStrategy.assertContains(info, actual, 6, index);
} catch (AssertionError e) {
verify(failures).failure(info, shouldContainAtIndex(actual, 6, index, 8, absValueComparisonStrategy));
return;
}
failBecauseExpectedAssertionErrorWasNotThrown();
}
use of org.assertj.core.data.Index in project assertj-core by joel-costigliola.
the class IntArrays_assertContains_at_Index_Test method should_fail_if_actual_does_not_contain_value_at_index.
@Test
public void should_fail_if_actual_does_not_contain_value_at_index() {
AssertionInfo info = someInfo();
Index index = atIndex(1);
try {
arrays.assertContains(info, actual, 6, index);
} catch (AssertionError e) {
verify(failures).failure(info, shouldContainAtIndex(actual, 6, index, 8));
return;
}
failBecauseExpectedAssertionErrorWasNotThrown();
}
use of org.assertj.core.data.Index in project assertj-core by joel-costigliola.
the class IntArrays_assertDoesNotContain_at_Index_Test method should_fail_if_actual_contains_value_at_index.
@Test
public void should_fail_if_actual_contains_value_at_index() {
AssertionInfo info = someInfo();
Index index = atIndex(0);
try {
arrays.assertDoesNotContain(info, actual, 6, index);
} catch (AssertionError e) {
verify(failures).failure(info, shouldNotContainAtIndex(actual, 6, index));
return;
}
failBecauseExpectedAssertionErrorWasNotThrown();
}
use of org.assertj.core.data.Index in project assertj-core by joel-costigliola.
the class IntArrays_assertDoesNotContain_at_Index_Test method should_fail_if_actual_contains_value_at_index_according_to_custom_comparison_strategy.
@Test
public void should_fail_if_actual_contains_value_at_index_according_to_custom_comparison_strategy() {
AssertionInfo info = someInfo();
Index index = atIndex(0);
try {
arraysWithCustomComparisonStrategy.assertDoesNotContain(info, actual, 6, index);
} catch (AssertionError e) {
verify(failures).failure(info, shouldNotContainAtIndex(actual, 6, index, absValueComparisonStrategy));
return;
}
failBecauseExpectedAssertionErrorWasNotThrown();
}
Aggregations