()
| 319 | } |
| 320 | |
| 321 | @Test |
| 322 | public void testDigits() { |
| 323 | String digits = faker.number().digits(5); |
| 324 | |
| 325 | assertThat(digits, matchesRegularExpression("[0-9]{5}")); |
| 326 | } |
| 327 | |
| 328 | /** |
| 329 | * Over the series of numbers identified from RANDOMIZATION_QUALITY_RANGE_START to |
nothing calls this directly
no test coverage detected