我知道如何比较字符串,我在线阅读使用:
assertEquals(String,String);
是安全的...但是我收到以下错误:
junit.framework.AssertionFailedError: expected:<53> but was:<53>
特别是我这样做:
assertEquals(totalRecipients.toString(), dataLineCount);
答案 0 :(得分:1)
dataLineCount
对我来说听起来不像是String
- 但如果不查看您的代码,我无法肯定地说。
假设dataLineCount
是int
,您不会使用assertEquals(String,String)
和assertEquals(Object,Object)
作为参数调用String
,而Integer
自动包装)。并且String
和Integer
不能比较平等......