java-faker
java-faker copied to clipboard
Brings the popular ruby faker gem to Java
**Is your feature request related to a problem? Please describe.** I'm trying to extend Faker to generate some domain-specific data using yml files. The only solution to this is proposed...
**Describe the bug** Some generated credit card numbers for `CreditCardType.VISA` and `CreditCardType.DISCOVER` are wrong **To Reproduce** ```kotlin repeat(1000) { val creditCard = Faker.instance().finance().creditCard(CreditCardType.DISCOVER).replace("-", "") if (creditCard.length == 20 || creditCard.length...
**To Reproduce** ```java Faker faker = new Faker(Locale.CHINA); System.out.println(faker.name().name()); System.out.println(faker.job().field()); System.out.println(faker.job().position()); System.out.println(faker.job().title()); ``` this is result.  **Versions:** - OS: windows - JDK 1.8 - Faker Version 1.0.2
In some cases it's possible to have MD5 hash (and possibly other as well) with the first byte set to 0. In this case it gets removed, while converting to...
Problem: Some email addresses contain single quote characters. I'd like to test that my software can handle them properly. Solution: Include the single quotes in the email addresses generated by...
Country names, addresses, streets, names and phone numbers in Georgian were added. Compound given and family names are also supported: - Some people may have two given names (e.g. Lasha-Giorgi)....
Hi, In some instances, id_number.valid does not need to have much logic. So, in addition of having separate classes like SvSEIdNumber, we suggest supporting expressions like below too: ` id_number:`...