()
| 312 | } |
| 313 | |
| 314 | @Test |
| 315 | public void testDigit() { |
| 316 | String digit = faker.number().digit(); |
| 317 | |
| 318 | assertThat(digit, matchesRegularExpression("[0-9]")); |
| 319 | } |
| 320 | |
| 321 | @Test |
| 322 | public void testDigits() { |
nothing calls this directly
no test coverage detected