| 1 | package com.github.javafaker; |
| 2 | |
| 3 | public class Artist { |
| 4 | |
| 5 | private final Faker faker; |
| 6 | |
| 7 | protected Artist(Faker faker) { |
| 8 | this.faker = faker; |
| 9 | } |
| 10 | |
| 11 | public String name() { |
| 12 | return faker.fakeValuesService().fetchString("artist.names"); |
| 13 | } |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected