| 1 | package com.github.javafaker; |
| 2 | |
| 3 | public class Currency { |
| 4 | |
| 5 | private final Faker faker; |
| 6 | |
| 7 | public Currency(Faker faker) { |
| 8 | this.faker = faker; |
| 9 | } |
| 10 | |
| 11 | public String name() { |
| 12 | return faker.fakeValuesService().resolve("currency.name", this, faker); |
| 13 | } |
| 14 | |
| 15 | public String code() { |
| 16 | return faker.fakeValuesService().resolve("currency.code", this, faker); |
| 17 | } |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected