java – 无法导入org.junit.Assert.AssertThat;

前端之家收集整理的这篇文章主要介绍了java – 无法导入org.junit.Assert.AssertThat;前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我无法在我的程序中导入org.junit.Assert.AssertThat.我使用Ganymede和jUnit 4.8.1.

解决方法

静态导入

它是org.junit.Assert.assertThat(T,Matcher<T>),您可以将其导入为静态导入:

import static org.junit.Assert.assertThat

现在在你的客户端代码中你可以做assertThat(something,ismatched())

参考:Java Tutorial > The Static Import Statement

定期进口

要做这个老派的方法,如果你这样导入Assert类

import org.junit.Assert

你可以使用Assert.assertThat(something,isMatched())来调用

(isMatched()方法是你必须实现的)

assertThat()

assertThat()首先描述为in this blog post,并已成为JUnit ever since version 4.4的一部分,因此请确保您在类路径上具有JUnit版本4.4或更高版本.此外,请确保您的编译器合规级别为1.5或更高版本:

原文链接:https://www.f2er.com/java/121480.html

猜你在找的Java相关文章