JUnit Assert with BigDecimal

后端 未结 9 2266
遇见更好的自我
遇见更好的自我 2021-02-02 05:47

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         


        
9条回答
  •  感动是毒
    2021-02-02 06:22

    Use AssertEquals instead of AssertSame... reason because assertequals checks the value but assertsame checks the refrence..

提交回复
热议问题