tst/com/amazon/kinesis/streaming/agent/tailing/AbstractParserTest.java [543:553]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        Path testFile = FileSystems.getDefault().getPath(this.getClass().getResource(testfileName).getFile());
        Path resultFile = FileSystems.getDefault().getPath(this.getClass().getResource(expectedResultFileName).getFile());
        P parser = buildParser();
        parser = spy(parser);
        TrackedFile file = new TrackedFile(flow, testFile);
        file.open(0);
        assertTrue(parser.switchParsingToFile(file));
        List<R> actualRecords = parseAllRecords(parser, null);
        List<String> expectedRecords = getLines(null, resultFile);
        
        assertTrue(actualRecords.size() > 0);  // SANITYCHECK: Ensure we didn't shoot blanks
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tst/com/amazon/kinesis/streaming/agent/tailing/AbstractParserTest.java [577:587]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        Path testFile = FileSystems.getDefault().getPath(this.getClass().getResource(testfileName).getFile());
        Path resultFile = FileSystems.getDefault().getPath(this.getClass().getResource(expectedResultFileName).getFile());
        P parser = buildParser();
        parser = spy(parser);
        TrackedFile file = new TrackedFile(flow, testFile);
        file.open(0);
        assertTrue(parser.switchParsingToFile(file));
        List<R> actualRecords = parseAllRecords(parser, null);
        List<String> expectedRecords = getLines(null, resultFile);
        
        assertTrue(actualRecords.size() > 0);  // SANITYCHECK: Ensure we didn't shoot blanks
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



