Skip to content

hellonone/faker-data

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

1、这是什么?

这是一个随机生成假数据的工具,灵感来自于java-faker项目

2、他能做什么?

他可以很简单的生成各种假数据,方便进行测试

3、怎么使用?

以生成假的姓名举例

@SpringBootTest
class FakerDataApplicationTests {
    @Test
    public void testFaker() {
        Faker faker = new Faker();
        Name name = faker.name();
        System.out.println(name.getName());
    }
}

国际化用法

@SpringBootTest
class FakerDataApplicationTests {
    @Test
    public void testFaker() {
        Faker faker = new Faker(new Local("zh-cn"));
        Name name = faker.name();
        System.out.println(name.getName());
    }
}

4、致谢

感谢项目灵感来源java-faker ,和根据正则生成随机字符串的项目reverse-regexp

About

假数据生成

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages