我在 scala 中使用 junit 来比较我的 scala 代码的字符串输出。就像是 :
val expected = """<Destination id="0" type="EMAIL">
<Address>
me@test.com
</Address>
<TimeZone>
US/Eastern
</TimeZone>
<Message>
</Message>
</Destination>
"""
val actual = getTextToLog()
info(" actual = " + actual)
assert(expected == actual)
问题是对于某些字符串,断言如下:
assert(expected == actual)
工作,对一些人来说,他们不串。即使我从 Eclipse 控制台复制实际(登录到 Eclipse 控制台)并将其粘贴到预期中以确保,断言仍然失败。
我错过了什么?