(t *testing.T)
| 299 | } |
| 300 | |
| 301 | func TestInvalid(t *testing.T) { |
| 302 | tError(t, `{"a": nul}`, 4, FFErr_invalid_string) |
| 303 | tError(t, `{"a": 1.a}`, 4, FFErr_missing_integer_after_decimal) |
| 304 | } |
| 305 | |
| 306 | func TestCapture(t *testing.T) { |
| 307 | ffl := NewFFLexer([]byte(`{"hello": {"blah": [null, 1]}}`)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…