(t *testing.T)
| 262 | } |
| 263 | |
| 264 | func TestInt(t *testing.T) { |
| 265 | tInt(t, `{"a": 2000}`, 2000) |
| 266 | tInt(t, `{"a": -2000}`, -2000) |
| 267 | tInt(t, `{"a": 0}`, 0) |
| 268 | tInt(t, `{"a": -0}`, -0) |
| 269 | } |
| 270 | |
| 271 | func tError(t *testing.T, input string, targetCount int, targetError FFErr) { |
| 272 | ffl := NewFFLexer([]byte(input)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…