| 6 | import static org.junit.Assert.assertThat; |
| 7 | |
| 8 | public class AncientTest extends AbstractFakerTest { |
| 9 | |
| 10 | @Test |
| 11 | public void god() { |
| 12 | assertThat(faker.ancient().god(), matchesRegularExpression("\\w+")); |
| 13 | } |
| 14 | |
| 15 | @Test |
| 16 | public void primordial() { |
| 17 | assertThat(faker.ancient().primordial(), matchesRegularExpression("\\w+")); |
| 18 | } |
| 19 | |
| 20 | @Test |
| 21 | public void titan() { |
| 22 | assertThat(faker.ancient().titan(), matchesRegularExpression("\\w+")); |
| 23 | } |
| 24 | |
| 25 | @Test |
| 26 | public void hero() { |
| 27 | assertThat(faker.ancient().hero(), matchesRegularExpression("(?U)\\w+")); |
| 28 | } |
| 29 | |
| 30 | } |
nothing calls this directly
no outgoing calls
no test coverage detected