Test/lexer integration
Created by: ecoulson
What?
Adding an integration test for two real-world examples of system Verilog.
Why?
These tests provide a place to sanity-check that the lexer works on real-world inputs. Completing this test means that work on the parser can begin.
How?
The tokens were generated by running the lexer on the input files and converting the provided tokens to the code that can generate the expected tokens in the code. It is a snapshot of the expected output that will be compared whenever integration tests are run.
Testing?
Two integration tests were added
Anything else?
There is a possibility that human error occurred when verifying that the tokens produced by the lexer were incorrect so it's not a bad idea to verify these tokens manually later.
Closes #13 (closed)