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>