| 1 | package com.github.javafaker; |
| 2 | |
| 3 | public class Buffy { |
| 4 | private final Faker faker; |
| 5 | |
| 6 | protected Buffy(Faker faker) { |
| 7 | this.faker = faker; |
| 8 | } |
| 9 | |
| 10 | public String characters() { |
| 11 | return faker.fakeValuesService().resolve("buffy.characters", this, faker); |
| 12 | } |
| 13 | |
| 14 | public String quotes() { |
| 15 | return faker.fakeValuesService().resolve("buffy.quotes", this, faker); |
| 16 | } |
| 17 | |
| 18 | public String celebrities() { |
| 19 | return faker.fakeValuesService().resolve("buffy.celebrities", this, faker); |
| 20 | } |
| 21 | |
| 22 | public String bigBads() { |
| 23 | return faker.fakeValuesService().resolve("buffy.big_bads", this, faker); |
| 24 | } |
| 25 | |
| 26 | public String episodes() { |
| 27 | return faker.fakeValuesService().resolve("buffy.episodes", this, faker); |
| 28 | } |
| 29 | |
| 30 | } |
nothing calls this directly
no outgoing calls
no test coverage detected