| 113 | }; |
| 114 | |
| 115 | TEST(AstCrawlerTest, CheckCrawlConstant) { |
| 116 | MockAstRewriter handler; |
| 117 | |
| 118 | Expr expr; |
| 119 | auto& const_expr = expr.mutable_const_expr(); |
| 120 | |
| 121 | EXPECT_CALL(handler, PostVisitConst(Ref(expr), Ref(const_expr))).Times(1); |
| 122 | |
| 123 | AstRewrite(expr, handler); |
| 124 | } |
| 125 | |
| 126 | TEST(AstCrawlerTest, CheckCrawlIdent) { |
| 127 | MockAstRewriter handler; |
nothing calls this directly
no test coverage detected