Lines Matching refs:testKey
29 static const char testKey[]; member in __anon7df7ecd90111::StringMapTest
44 EXPECT_EQ(0u, testMap.count(testKey)); in assertEmptyMap()
47 EXPECT_TRUE(testMap.find(testKey) == testMap.end()); in assertEmptyMap()
61 EXPECT_STREQ(testKey, it->first().data()); in assertSingleItemMap()
67 EXPECT_EQ(1u, testMap.count(testKey)); in assertSingleItemMap()
70 EXPECT_TRUE(testMap.find(testKey) == testMap.begin()); in assertSingleItemMap()
77 const char StringMapTest::testKey[] = "key"; member in __anon7df7ecd90111::StringMapTest
79 const char* StringMapTest::testKeyFirst = testKey;
80 size_t StringMapTest::testKeyLength = sizeof(testKey) - 1;
81 const std::string StringMapTest::testKeyStr(testKey);
110 EXPECT_EQ(0u, constTestMap.count(testKey)); in TEST_F()
113 EXPECT_TRUE(constTestMap.find(testKey) == constTestMap.end()); in TEST_F()
128 testMap[testKey] = testValue; in TEST_F()
134 testMap[testKey] = testValue; in TEST_F()
141 testMap[testKey] = testValue; in TEST_F()
148 testMap[testKey] = testValue; in TEST_F()
149 testMap.erase(testKey); in TEST_F()
155 testMap[testKey] = testValue; in TEST_F()
243 EXPECT_STREQ(testKey, entry->first().data()); in TEST_F()