()
| 51 | } |
| 52 | |
| 53 | public String url() { |
| 54 | return join( |
| 55 | "www", |
| 56 | ".", |
| 57 | FakerIDN.toASCII( |
| 58 | faker.name().firstName().toLowerCase().replaceAll("'", "") + |
| 59 | "-" + |
| 60 | domainWord() |
| 61 | ), |
| 62 | ".", |
| 63 | domainSuffix() |
| 64 | ); |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Generates a random avatar url based on a collection of profile pictures of real people. All this avatar have been |
nothing calls this directly
no test coverage detected