我将JUnit用于Assert.fail,但我不知道什么是Hamcrest等效项。有人知道吗?

最佳答案

MatcherAssert类具有以下方法:

public static void assertThat(String reason, boolean assertion) {
    if (!assertion) {
        throw new AssertionError(reason);
    }
}


因此,当调用它时,将是最接近的东西:

MatcherAssert.assertThat("Fail here", false);

09-25 22:06