Provides utility methods for generating fake strings, such as names, phone numbers, addresses. generate random strings with given patterns @author ren
| 13 | * @author ren |
| 14 | */ |
| 15 | public class Faker { |
| 16 | private final RandomService randomService; |
| 17 | private final FakeValuesService fakeValuesService; |
| 18 | |
| 19 | private final Ancient ancient; |
| 20 | private final App app; |
| 21 | private final Artist artist; |
| 22 | private final Avatar avatar; |
| 23 | private final Aviation aviation; |
| 24 | private final Lorem lorem; |
| 25 | private final Music music; |
| 26 | private final Name name; |
| 27 | private final Number number; |
| 28 | private final Internet internet; |
| 29 | private final PhoneNumber phoneNumber; |
| 30 | private final Pokemon pokemon; |
| 31 | private final Address address; |
| 32 | private final Business business; |
| 33 | private final Book book; |
| 34 | private final ChuckNorris chuckNorris; |
| 35 | private final Color color; |
| 36 | private final Commerce commerce; |
| 37 | private final Country country; |
| 38 | private final Currency currency; |
| 39 | private final Company company; |
| 40 | private final Crypto crypto; |
| 41 | private final IdNumber idNumber; |
| 42 | private final Hacker hacker; |
| 43 | private final Options options; |
| 44 | private final Code code; |
| 45 | private final Finance finance; |
| 46 | private final Food food; |
| 47 | private final GameOfThrones gameOfThrones; |
| 48 | private final DateAndTime dateAndTime; |
| 49 | private final Demographic demographic; |
| 50 | private final Dog dog; |
| 51 | private final Educator educator; |
| 52 | private final ElderScrolls elderScrolls; |
| 53 | private final Shakespeare shakespeare; |
| 54 | private final SlackEmoji slackEmoji; |
| 55 | private final Space space; |
| 56 | private final Superhero superhero; |
| 57 | private final Bool bool; |
| 58 | private final Team team; |
| 59 | private final Beer beer; |
| 60 | private final University university; |
| 61 | private final Cat cat; |
| 62 | private final File file; |
| 63 | private final Stock stock; |
| 64 | private final LordOfTheRings lordOfTheRings; |
| 65 | private final Zelda zelda; |
| 66 | private final HarryPotter harryPotter; |
| 67 | private final RockBand rockBand; |
| 68 | private final Esports esports; |
| 69 | private final Friends friends; |
| 70 | private final Hipster hipster; |
| 71 | private final Job job; |
| 72 | private final TwinPeaks twinPeaks; |
nothing calls this directly
no outgoing calls
no test coverage detected