| 43 | } |
| 44 | |
| 45 | TEST(DefBlockSyntaxTokeniser, EmptyText) |
| 46 | { |
| 47 | auto tokeniser = createTokeniser(""); |
| 48 | auto it = tokeniser.getIterator(); |
| 49 | |
| 50 | EXPECT_TRUE(it.isExhausted()); |
| 51 | } |
| 52 | |
| 53 | TEST(DefBlockSyntaxTokeniser, Whitespace) |
| 54 | { |
nothing calls this directly
no test coverage detected