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
Use AssertEquals instead of AssertSame... reason because assertequals checks the value but assertsame checks the refrence..
AssertEquals
AssertSame
assertequals
assertsame