Test data from https://github.com/akheron/jansson/tree/master/test/suites/invalid jansson, Copyright (c) 2009-2014 Petri Lehtinen (MIT Licensed)
(t *testing.T)
| 29 | // (MIT Licensed) |
| 30 | |
| 31 | func TestInvalidApostrophe(t *testing.T) { |
| 32 | testExpectedError(t, |
| 33 | &fflib.LexerError{}, |
| 34 | `'`, |
| 35 | &Xstring{}) |
| 36 | } |
| 37 | |
| 38 | func TestInvalidASCIIUnicodeIdentifier(t *testing.T) { |
| 39 | testExpectedError(t, |
nothing calls this directly
no test coverage detected
searching dependent graphs…