datafactory
datafactory copied to clipboard
Java library for generating test data
Bumps [junit](https://github.com/junit-team/junit4) from 4.8.2 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...
I've simply fixed the problems that made the readme not rendered and then I converted a variable to camelCase for better readability.
Fixed README formatting inline with markdown to improve readability, mainly headers, excessive spaces and code formatting.
This prevents invalid email addresses from being generated.
String "or maybe" in words array is not a word. It's two words.
So that we may conveniently see the methods available.
GitHub changed the way Markdown headings are parsed, so this change fixes it. See [bryant1410/readmesfix](https://github.com/bryant1410/readmesfix) for more information. Tackles bryant1410/readmesfix#1
Added new methods: - getCountry: get random country - getCountryShort: get random country abbreviation (2 chars) - getNationality: get random nationality - getOccupation: get random occupation - getHexText: get random...
getNumber() is throwing Exception `java.lang.IllegalArgumentException: bound must be positive` In Implementation you are using Integer.MIN_VALUE and Integer.MAX_Value, and when you subtract maximum value to minimum value it always returns -1,...
At line 503 of DataFactory.java, the following method ``` public String getRandomWord(int length) { return getRandomWord(length, length); } ``` should be ``` public String getRandomWord(int length) { return getRandomWord(0, length);...