| 7 | import static org.junit.Assert.assertThat; |
| 8 | |
| 9 | public class AviationTest extends AbstractFakerTest { |
| 10 | |
| 11 | @Test |
| 12 | public void airport() { |
| 13 | assertThat(faker.aviation().airport(), matchesRegularExpression("\\w{4}")); |
| 14 | } |
| 15 | |
| 16 | @Test |
| 17 | public void aircraft() { |
| 18 | assertThat(faker.aviation().aircraft(), isStringWithContents()); |
| 19 | } |
| 20 | |
| 21 | @Test |
| 22 | public void metar() { |
| 23 | assertThat(faker.aviation().METAR(), isStringWithContents()); |
| 24 | } |
| 25 | } |
nothing calls this directly
no outgoing calls
no test coverage detected