Package com.github.javafaker

Examples of com.github.javafaker.Faker


    private static final Logger logger = LoggerFactory.getLogger(FakerIntegrationTest.class);
    private Faker faker;

    public FakerIntegrationTest(Locale locale, Random random) {
        if (locale != null && random != null) {
            faker = new Faker(locale, random);
        } else if (locale != null) {
            faker = new Faker(locale);
        } else if (random != null) {
            faker = new Faker(random);
        } else {
            faker = new Faker();
        }
    }
View Full Code Here

TOP

Related Classes of com.github.javafaker.Faker

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.