Created
April 9, 2011 11:47
-
-
Save sourcerebels/911338 to your computer and use it in GitHub Desktop.
Hamcrest Maven dependency
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependency> | |
<groupId>org.hamcrest</groupId> | |
<artifactId>hamcrest-all</artifactId> | |
<version>1.1</version> | |
<type>jar</type> | |
<scope>compile</scope> | |
</dependency> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
assertThat(someCollection, hasItem(someItem)); | |
assertThat(customerAge, greaterThan(REQUIDED_AGE)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment