Lines Matching refs:otherMap
264 TypeParam otherMap; in TYPED_TEST() local
266 this->Map.swap(otherMap); in TYPED_TEST()
269 EXPECT_EQ(1u, otherMap.size()); in TYPED_TEST()
270 EXPECT_EQ(this->getValue(), otherMap[this->getKey()]); in TYPED_TEST()
272 this->Map.swap(otherMap); in TYPED_TEST()
273 EXPECT_EQ(0u, otherMap.size()); in TYPED_TEST()
274 EXPECT_TRUE(otherMap.empty()); in TYPED_TEST()
282 this->Map.swap(otherMap); in TYPED_TEST()
285 EXPECT_EQ(100u, otherMap.size()); in TYPED_TEST()
287 EXPECT_EQ(this->getValue(i), otherMap[this->getKey(i)]); in TYPED_TEST()
289 this->Map.swap(otherMap); in TYPED_TEST()
290 EXPECT_EQ(0u, otherMap.size()); in TYPED_TEST()
291 EXPECT_TRUE(otherMap.empty()); in TYPED_TEST()