RandomData icon indicating copy to clipboard operation
RandomData copied to clipboard

Random data generator

Results 2 RandomData issues
Sort by recently updated
recently updated
newest added

Hey, it looks like the filling of immutable data classes is not currently available as: ``` RandomData.java if ((f.getModifiers() & Modifier.FINAL) != 0) continue; ``` Perhaps setting field to non-final...

Hello, the DateGenerator class would benefit from additional null check: ``` @Override protected Matcher getDefaultMatcher() { return f -> f.getName().equals("date"); } ``` to ``` @Override protected Matcher getDefaultMatcher() { return...

bug