| 17 | {} |
| 18 | |
| 19 | void CMakeParserTest::testLexerCreation() |
| 20 | { |
| 21 | cmListFileLexer* lexer = cmListFileLexer_New(); |
| 22 | QVERIFY( lexer != nullptr ); |
| 23 | cmListFileLexer_Delete( lexer ); |
| 24 | } |
| 25 | |
| 26 | void CMakeParserTest::testLexerWithFile() |
| 27 | { |
nothing calls this directly
no test coverage detected