| 262 | using DefBlockSyntaxParserTest = RadiantTest; |
| 263 | |
| 264 | TEST_F(DefBlockSyntaxParserTest, ParseEmptyText) |
| 265 | { |
| 266 | auto syntaxTree = parseText(""); |
| 267 | EXPECT_TRUE(syntaxTree) << "Syntax Root must not be null"; |
| 268 | } |
| 269 | |
| 270 | TEST_F(DefBlockSyntaxParserTest, ParseWhitespace) |
| 271 | { |
nothing calls this directly
no test coverage detected