spring-test-utils
Utility classes useful when testing Spring projects.
Installation
The library is available on Maven Central.
Maven
Add the following to your pom.xml
:
<repositories>
<repository>
<id>central</id>
<name>Central Repository</name>
<url>http://repo.maven.apache.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
...
<dependency>
<groupId>com.arakelian</groupId>
<artifactId>spring-test-utils</artifactId>
<version>1.0.2</version>
<scope>compile</scope>
</dependency>
Gradle
Add the following to your build.gradle
:
repositories {
mavenCentral()
}
dependencies {
compile 'com.arakelian:spring-test-utils:1.0.2'
}
Licence
Apache Version 2.0