I'm not sure if its that well known but if you are writing unit tests in JUnit 3.x, 4.x or TestNG take a 
look at the tutorial, add hamcrest-all.jar to your classpath/project/pom.xml then give 
hamcrest a spin. I think you'll like it. Here's the pom.xml change...
<dependency>
    <groupId>org.hamcrest</groupId>
  <artifactId>hamcrest-all</artifactId>
    <version>1.1</version>
</dependency>
assertThat! :)
No comments:
Post a Comment