Mixing Hamcrest and TestNG
In short, to answer your question: You don’t need to integrate TestNG with Hamcrest. Just call org.hamcrest.MatcherAssert.assertThat(…) directly which throws java.lang.AssertionError. Background I found your question via Google, wondering exactly the same issue. After further Googling, I didn’t find any satisfying answers, so I read the source code for JUnit’s integration with Hamcrest. With JUnit, … Read more