Home | History | Annotate | Download | only in unittests

Lines Matching refs:it

18   // create testee. modify it if need
56 StringTable::iterator it = m_pTestee->begin();
57 ASSERT_STREQ(*it, "Hello");
58 ++it;
59 ASSERT_STREQ(*it, "World");
60 ++it;
61 ASSERT_STREQ(*it, "Media");
62 ++it;
63 ASSERT_STREQ(*it, "Tek");
64 ++it;
65 ASSERT_EQ(it, m_pTestee->end());