import static org.junit.Assert.assertNull;
public class LineContextTest {
@Test
public void testGet() throws Exception {
LineContext context = new LineContext(new CollectorContext());
String source = "{\"name\": \"foo\", \"details\": {\"age\": 43}}";
context.rawSource(source.getBytes());
assertNull(context.get(new ColumnIdent("invalid", "column")));