assertj-assertions-generator
assertj-assertions-generator copied to clipboard
Custom assertions generator
AssertJ - Assertions Generator
Overview
The Assertions Generator can create specific assertions for your classes. It comes with :
- a CLI tool (this project)
- a maven plugin.
- a gradle plugin.
Let's say you have a Player class with name and team properties. The generator will create a PlayerAssert assertions class with hasName and hasTeam assertions. This allows you to write :
assertThat(mvp).hasName("Lebron James").hasTeam("Miami Heat");
Documentation
Please have a look at the complete documentation in the assertions generator section, including a quickstart guide.