Lines Matching refs:test_action
92 TestASTFrontendAction test_action; in TEST() local
93 ASSERT_TRUE(compiler.ExecuteAction(test_action)); in TEST()
94 ASSERT_EQ(2U, test_action.decl_names.size()); in TEST()
95 EXPECT_EQ("main", test_action.decl_names[0]); in TEST()
96 EXPECT_EQ("x", test_action.decl_names[1]); in TEST()
112 TestASTFrontendAction test_action(/*enableIncrementalProcessing=*/true); in TEST() local
113 ASSERT_TRUE(compiler.ExecuteAction(test_action)); in TEST()
114 ASSERT_EQ(2U, test_action.decl_names.size()); in TEST()
115 EXPECT_EQ("main", test_action.decl_names[0]); in TEST()
116 EXPECT_EQ("x", test_action.decl_names[1]); in TEST()
139 TestASTFrontendAction test_action(/*enableIncrementalProcessing=*/true, in TEST() local
141 ASSERT_TRUE(compiler.ExecuteAction(test_action)); in TEST()
142 ASSERT_EQ(13U, test_action.decl_names.size()); in TEST()
143 EXPECT_EQ("A", test_action.decl_names[0]); in TEST()
144 EXPECT_EQ("c", test_action.decl_names[12]); in TEST()