运行使用 DataflowAssert 的 Dataflow unittest 时出现异常
java.lang.RuntimeException: DataflowAssert requires that JUnit and Hamcrest be linked in.
我需要将哪些依赖项添加到我的 pom 文件中才能修复此异常?
运行使用 DataflowAssert 的 Dataflow unittest 时出现异常
java.lang.RuntimeException: DataflowAssert requires that JUnit and Hamcrest be linked in.
我需要将哪些依赖项添加到我的 pom 文件中才能修复此异常?
将以下依赖项添加到您的 pom 文件中以链接所需的库
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>