Lines Matching refs:steps
151 const std::vector<std::shared_ptr<LogicalStep>>& steps = plan.forTest_compoundGetSteps(); in TEST_F() local
152 ASSERT_EQ(steps.size(), 6u); in TEST_F()
153 ASSERT_TRUE(steps[0]->isWhile()); in TEST_F()
154 ASSERT_TRUE(steps[1]->isExecution()); in TEST_F()
155 ASSERT_EQ(steps[1]->executionStep()->getDevice(), DeviceManager::getCpuDevice()); in TEST_F()
156 ASSERT_TRUE(steps[2]->isGoto()); in TEST_F()
157 ASSERT_TRUE(steps[3]->isExecution()); in TEST_F()
158 ASSERT_EQ(steps[3]->executionStep()->getDevice(), DeviceManager::getCpuDevice()); in TEST_F()
159 ASSERT_TRUE(steps[4]->isGoto()); in TEST_F()
160 ASSERT_TRUE(steps[5]->isExecution()); in TEST_F()
161 ASSERT_EQ(steps[5]->executionStep()->getDevice(), mTestDevice); in TEST_F()