mockneat icon indicating copy to clipboard operation
mockneat copied to clipboard

MockNeat - the modern faker lib.

Results 8 mockneat issues
Sort by recently updated
recently updated
newest added

given the example: ``` final private MockUnit childGenerator = reflect(Child.class) .field("id", UUID.fromString(uuids().get())) .useDefaults(true); final private MockUnit parentGenerator = reflect(Parent.class) .field("id", UUID.fromString(uuids().get())) .field("child", childGenerator.list(2)) .useDefaults(true); ```` This will result in a...

Hi, apache.commons.text have disvovered vulnerable in version before 1.9, it have saw you already merge update but also need to update mvn repo I think. Details: https://devhub.checkmarx.com/cve-details/CVE-2022-42889/?utm_source=jetbrains&utm_medium=referral&utm_campaign=idea&utm_term=maven as you can...

Bumps com.github.johnrengelman.shadow from 7.1.2 to 8.1.1. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.github.johnrengelman.shadow&package-manager=gradle&previous-version=7.1.2&new-version=8.1.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

Bonjour, I had working with MockNeat to implement a groovy interface. Given an instance of an object, the interface can shuffle all the fields of the object. ``` interface Shuffle...