JUnit字符串比较

时间:2013-11-28 15:56:16

标签: string junit

我知道如何比较字符串,我在线阅读使用:

assertEquals(String,String);

是安全的...但是我收到以下错误:

junit.framework.AssertionFailedError: expected:<53> but was:<53>

特别是我这样做:

assertEquals(totalRecipients.toString(), dataLineCount);

1 个答案:

答案 0 :(得分:1)

dataLineCount对我来说听起来不像是String - 但如果不查看您的代码,我无法肯定地说。

假设dataLineCountint,您不会使用assertEquals(String,String)assertEquals(Object,Object)作为参数调用String,而Integer自动包装)。并且StringInteger不能比较平等......