Home | History | Annotate | Download | only in ADT

Lines Matching full:testkey

22   static const char testKey[];
37 EXPECT_EQ(0u, testMap.count(testKey));
40 EXPECT_TRUE(testMap.find(testKey) == testMap.end());
54 EXPECT_STREQ(testKey, it->first().data());
60 EXPECT_EQ(1u, testMap.count(testKey));
63 EXPECT_TRUE(testMap.find(testKey) == testMap.begin());
70 const char StringMapTest::testKey[] = "key";
72 const char* StringMapTest::testKeyFirst = testKey;
73 size_t StringMapTest::testKeyLength = sizeof(testKey) - 1;
74 const std::string StringMapTest::testKeyStr(testKey);
93 EXPECT_EQ(0u, constTestMap.count(testKey));
96 EXPECT_TRUE(constTestMap.find(testKey) == constTestMap.end());
104 testMap[testKey] = testValue;
110 testMap[testKey] = testValue;
117 testMap[testKey] = testValue;
124 testMap[testKey] = testValue;
125 testMap.erase(testKey);
131 testMap[testKey] = testValue;
208 EXPECT_STREQ(testKey, entry->first().data());