Класс MatcherAssert
имеет этот метод:
public static void assertThat(String reason, boolean assertion) {
if (!assertion) {
throw new AssertionError(reason);
}
}
Так что при вызове это будет самая близкая вещь:
MatcherAssert.assertThat("Fail here", false);