| 1 | package com.github.javafaker; |
| 2 | |
| 3 | public class Friends { |
| 4 | private final Faker faker; |
| 5 | |
| 6 | protected Friends(Faker faker) { |
| 7 | this.faker = faker; |
| 8 | } |
| 9 | |
| 10 | public String character() { |
| 11 | return faker.resolve("friends.characters"); |
| 12 | } |
| 13 | |
| 14 | public String location() { |
| 15 | return faker.resolve("friends.locations"); |
| 16 | } |
| 17 | |
| 18 | public String quote() { |
| 19 | return faker.resolve("friends.quotes"); |
| 20 | } |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected