POJO-TESTER
User Guide
Introduction
This is a documentation for writing pojo-tests
using pojo-tester library.
If you have any questions, we can
Current coverage is [
What is pojo-tester?
POJO-TESTER
is a java testing library, which makes your pojo-tests
much easier. You can test your pojo
against equals
, hashCode
, toString
, getters
and setters
.
Supported Java versions
POJO-TESTER
requires Java 8.
Installation
POJO-TESTER
library can be found on jCenter
repository.
Gradle
repositories {
jcenter()
}
dependencies {
testCompile 'pl.pojo:pojo-tester:0.3.0'
}
Maven
<repositories>
<repository>
<id>jcenter</id>
<url>http://jcenter.bintray.com/</url>
</repository>
</repositories>
<dependency>
<groupId>pl.pojo</groupId>
<artifactId>pojo-tester</artifactId>
<version>0.3.0</version>
<type>pom</type>
</dependency>
JavaDoc documentation
Javadoc can be found here.