I use JUnit for Assert.fail
but I do not know what is the Hamcrest equivalent. Does anyone know?
Asked
Active
Viewed 3,883 times
3

Maciej Kowalski
- 25,605
- 12
- 54
- 63

BruceyBandit
- 3,978
- 19
- 72
- 144
2 Answers
3
The MatcherAssert
class has this method:
public static void assertThat(String reason, boolean assertion) {
if (!assertion) {
throw new AssertionError(reason);
}
}
So when invoked it would be the closest thing:
MatcherAssert.assertThat("Fail here", false);

Maciej Kowalski
- 25,605
- 12
- 54
- 63
1
Depending on how your test is structured, I found this more natural using the not(anything()) Matchers.
@Test(expected = MyException.class)
public void runMyTestHere() {
...
MyObj result = myService.getThing(id);
assertThat("Exception should have been thrown.", result, is(not(anything())));
}

Paul
- 11
- 3