Searched refs:fmMoved2 (Results 1 – 1 of 1) sorted by relevance
135 FruitMap fmMoved2; in TEST() local136 fmMoved2.Set(FruitMap::Apple, 12345); // This value will be clobbered after the move in TEST()138 fmMoved2 = std::move(fmFilledCopy2); in TEST()140 EXPECT_EQ(size_t(2), fmMoved2.Size()); in TEST()141 EXPECT_EQ(*fmFilled.Get(FruitMap::Apple), *fmMoved2.Get(FruitMap::Apple)); in TEST()142 EXPECT_DOUBLE_EQ(*fmFilled.Get(FruitMap::Orange), *fmMoved2.Get(FruitMap::Orange)); in TEST()