Lines Matching refs:intents
139 std::vector<RemoteActionTemplate> intents; in TEST_F() local
144 /*annotations_entity_data_schema=*/nullptr, &intents)); in TEST_F()
145 EXPECT_THAT(intents, IsEmpty()); in TEST_F()
161 std::vector<RemoteActionTemplate> intents; in TEST_F() local
166 /*annotations_entity_data_schema=*/nullptr, &intents)); in TEST_F()
167 EXPECT_THAT(intents, IsEmpty()); in TEST_F()
187 std::vector<RemoteActionTemplate> intents; in TEST_F() local
193 /*annotations_entity_data_schema=*/nullptr, &intents)); in TEST_F()
194 EXPECT_THAT(intents, SizeIs(1)); in TEST_F()
195 EXPECT_EQ(intents[0].title_without_entity.value(), "Map"); in TEST_F()
196 EXPECT_EQ(intents[0].title_with_entity.value(), "333 E Wonderview Ave"); in TEST_F()
197 EXPECT_EQ(intents[0].description.value(), "Locate selected address"); in TEST_F()
198 EXPECT_EQ(intents[0].action.value(), "android.intent.action.VIEW"); in TEST_F()
199 EXPECT_EQ(intents[0].data.value(), "geo:0,0?q=333%20E%20Wonderview%20Ave"); in TEST_F()