()
| 120 | } |
| 121 | |
| 122 | @Test |
| 123 | public void gtin13() { |
| 124 | String gtin13 = faker.code().gtin13(); |
| 125 | assertThat(gtin13, matchesRegularExpression("\\d{13}")); |
| 126 | assertThat(EAN13CheckDigit.EAN13_CHECK_DIGIT.isValid(gtin13), is(true)); |
| 127 | } |
| 128 | } |
nothing calls this directly
no test coverage detected