reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
368 EXPECT_TRUE(*it == this->theVector.front()); 369 EXPECT_TRUE(*it == this->theVector[0]); 370 EXPECT_EQ(1, it->getValue()); 371 ++it; 372 EXPECT_TRUE(*it == this->theVector[1]); 373 EXPECT_TRUE(*it == this->theVector.back()); 374 EXPECT_EQ(2, it->getValue()); 375 ++it; 376 EXPECT_TRUE(it == this->theVector.end()); 377 --it; 378 EXPECT_TRUE(*it == this->theVector[1]); 379 EXPECT_EQ(2, it->getValue()); 380 --it; 381 EXPECT_TRUE(*it == this->theVector[0]); 382 EXPECT_EQ(1, it->getValue());