POJO-TESTER
User Guide
Introduction
This is a documentation for writing pojo-tests
using pojo-tester
library.
If you have any questions, we can
Get automatic notifications about new POJO-TESTER
versions
What is pojo-tester?
POJO-TESTER
is a java testing library, which makes your pojo-method
tests much easier.
You can test your pojo
against equals
,
hashCode
, toString
, getters
,
setters
and even constructors
.
POJO-TESTER
automatically performs tests on basic
pojo-methods
so you don't have to copy-paste all dummy tests
over and over.
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.5.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.5.0</version>
<type>pom</type>
</dependency>
JavaDoc documentation
Javadoc can be found here.