| 91 | }; |
| 92 | |
| 93 | TEST(AstCrawlerTest, CheckCrawlConstant) { |
| 94 | MockAstVisitor handler; |
| 95 | |
| 96 | Expr expr; |
| 97 | auto& const_expr = expr.mutable_const_expr(); |
| 98 | |
| 99 | EXPECT_CALL(handler, PostVisitConst(Ref(expr), Ref(const_expr))).Times(1); |
| 100 | |
| 101 | AstTraverse(expr, handler); |
| 102 | } |
| 103 | |
| 104 | TEST(AstCrawlerTest, CheckCrawlIdent) { |
| 105 | MockAstVisitor handler; |
nothing calls this directly
no test coverage detected