bigDecimals.assertEqual(description, BigDecimal.ONE, null);
}
@Test
public void should_fail_if_actual_is_not_equal_to_expectd() {
MessageFormatter messageFormatter = MessageFormatter.instance();
String message = messageFormatter.format(description, "expected:<%s> but was:<%s>", BigDecimal.TEN, BigDecimal.ONE);
try {
bigDecimals.assertEqual(description, BigDecimal.ONE, BigDecimal.TEN);
} catch (org.junit.ComparisonFailure e) {
e.getMessage().equalsIgnoreCase(message);
}