Skip to content

Latest commit

 

History

History
66 lines (61 loc) · 3.71 KB

README.md

File metadata and controls

66 lines (61 loc) · 3.71 KB

POJO Tester

A Java POJO testing library. You can test objects against equals, hashCode, toString, getters, setters and constructors.

Maven release Gradle build codecov

This is a fork of the now defunct pojo-tester project, by Piotr Joński.

Installation

Gradle

dependencies {
    testImplementation 'com.obsidiandynamics.pojotester:core:${latest-version}'
}

Maven

<dependency>
      <groupId>com.obsidiandynamics.pojotester</groupId>
      <artifactId>core</artifactId>
      <version>${latest-version}</version>
      <type>pom</type>
</dependency>

Documentation