I want to use assert between 2 two decimal, I use this:
BigDecimal bd1 = new BigDecimal (1000); BigDecimal bd2 = new BigDecimal (1000); org.junit.Assert.assertSa
Can't you just use a toString() as in :
assertEquals("0.02", taxes.toString());
where taxes is a BigDecimal.