我正在使用 Maven 和 jUnit。
在测试中我有一个断言
assertEquals("3", k.calculateArg("2+1.0"));
我有错误:
junit.framework.ComparisonFailure: expected:<...> but was:<....0>
如何让 Maven 显示全文?它们的缩写并不长。
我使用 jUnit 3.8.1(来自 pom.xml):
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>