Lines Matching refs:otherMap
270 TypeParam otherMap; in TYPED_TEST() local
272 this->Map.swap(otherMap); in TYPED_TEST()
275 EXPECT_EQ(1u, otherMap.size()); in TYPED_TEST()
276 EXPECT_EQ(this->getValue(), otherMap[this->getKey()]); in TYPED_TEST()
278 this->Map.swap(otherMap); in TYPED_TEST()
279 EXPECT_EQ(0u, otherMap.size()); in TYPED_TEST()
280 EXPECT_TRUE(otherMap.empty()); in TYPED_TEST()
287 this->Map.swap(otherMap); in TYPED_TEST()
290 EXPECT_EQ(100u, otherMap.size()); in TYPED_TEST()
292 EXPECT_EQ(this->getValue(i), otherMap[this->getKey(i)]); in TYPED_TEST()
294 this->Map.swap(otherMap); in TYPED_TEST()
295 EXPECT_EQ(0u, otherMap.size()); in TYPED_TEST()
296 EXPECT_TRUE(otherMap.empty()); in TYPED_TEST()