| 52 | } |
| 53 | |
| 54 | TEST(Preprocessor, CornerCases) { |
| 55 | EXPECT_THAT(ParseInlines(""), testing::ElementsAre()); |
| 56 | EXPECT_THAT(ParseInlines("text text"), testing::ElementsAre()); |
| 57 | EXPECT_THAT(ParseInlines("$$"), testing::ElementsAre("")); |
| 58 | } |
| 59 | |
| 60 | TEST(Preprocessor, One) { |
| 61 | EXPECT_THAT(ParseInlines("$text$"), testing::ElementsAre("text")); |
nothing calls this directly
no test coverage detected