(t *testing.T)
| 134 | } |
| 135 | |
| 136 | func TestInvalidLoneOpenBracket(t *testing.T) { |
| 137 | testExpectedError(t, |
| 138 | &fflib.LexerError{}, |
| 139 | `[`, |
| 140 | &Xarray{}) |
| 141 | } |
| 142 | |
| 143 | func TestInvalidLoneCloseBrace(t *testing.T) { |
| 144 | testExpectedError(t, |
nothing calls this directly
no test coverage detected
searching dependent graphs…