Add some testing

This commit is contained in:
Erik Broes
2012-01-29 11:22:11 +01:00
parent 1ea0037f49
commit 4c2f57592d
6 changed files with 219 additions and 1 deletions

16
pom.xml
View File

@@ -111,10 +111,24 @@
<type>jar</type>
<scope>provided</scope>
</dependency>
<!-- testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<artifactId>junit-dep</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.2.1</version>
<scope>test</scope>
</dependency>
</dependencies>