(String src, String wantTokens)
| 119 | // Scans src, and asserts that the tokens match wantTokens |
| 120 | // and that there are no errors. |
| 121 | private void check(String src, String wantTokens) { |
| 122 | assertThat(values(tokens(src))).isEqualTo(wantTokens); |
| 123 | assertThat(errors).isEmpty(); |
| 124 | } |
| 125 | |
| 126 | // Scans src, and asserts that the tokens match wantTokens |
| 127 | // and the errors match wantErrors. |
no test coverage detected