Lines Matching refs:otherMap
274 TypeParam otherMap; in TYPED_TEST() local
276 this->Map.swap(otherMap); in TYPED_TEST()
279 EXPECT_EQ(1u, otherMap.size()); in TYPED_TEST()
280 EXPECT_EQ(this->getValue(), otherMap[this->getKey()]); in TYPED_TEST()
282 this->Map.swap(otherMap); in TYPED_TEST()
283 EXPECT_EQ(0u, otherMap.size()); in TYPED_TEST()
284 EXPECT_TRUE(otherMap.empty()); in TYPED_TEST()
292 this->Map.swap(otherMap); in TYPED_TEST()
295 EXPECT_EQ(100u, otherMap.size()); in TYPED_TEST()
297 EXPECT_EQ(this->getValue(i), otherMap[this->getKey(i)]); in TYPED_TEST()
299 this->Map.swap(otherMap); in TYPED_TEST()
300 EXPECT_EQ(0u, otherMap.size()); in TYPED_TEST()
301 EXPECT_TRUE(otherMap.empty()); in TYPED_TEST()