fixture-monkey-javax-validation
Features
Generating an object validated by JSR380: Bean Validation 2.0 annotations
How-to
1. Adding dependency
testImplementation("com.navercorp.fixturemonkey:fixture-monkey-javax-validation:1.1.0")
<dependency>
<groupId>com.navercorp.fixturemonkey</groupId>
<artifactId>fixture-monkey-javax-validation</artifactId>
<version>1.1.0</version>
<scope>test</scope>
</dependency>
2. Adding option plugin
FixtureMonkey fixtureMonkey = FixtureMonkey.builder()
.plugin(new JavaxValidationPlugin())
.build();