()
| 10 | public class CountryTest extends AbstractFakerTest { |
| 11 | |
| 12 | @Test |
| 13 | @Repeat(times=10) |
| 14 | public void testFlag() { |
| 15 | String flag = faker.country().flag(); |
| 16 | assertThat(flag, matchesRegularExpression("^http:\\/\\/flags.fmcdn\\.net\\/data\\/flags\\/w580\\/[a-zA-Z0-9_]+\\.png$")); |
| 17 | } |
| 18 | |
| 19 | |
| 20 | @Test |
nothing calls this directly
no test coverage detected