Lines Matching refs:testKey
24 static const char testKey[]; member in __anon4fa0284b0111::StringMapTest
39 EXPECT_EQ(0u, testMap.count(testKey)); in assertEmptyMap()
42 EXPECT_TRUE(testMap.find(testKey) == testMap.end()); in assertEmptyMap()
56 EXPECT_STREQ(testKey, it->first().data()); in assertSingleItemMap()
62 EXPECT_EQ(1u, testMap.count(testKey)); in assertSingleItemMap()
65 EXPECT_TRUE(testMap.find(testKey) == testMap.begin()); in assertSingleItemMap()
72 const char StringMapTest::testKey[] = "key"; member in __anon4fa0284b0111::StringMapTest
74 const char* StringMapTest::testKeyFirst = testKey;
75 size_t StringMapTest::testKeyLength = sizeof(testKey) - 1;
76 const std::string StringMapTest::testKeyStr(testKey);
95 EXPECT_EQ(0u, constTestMap.count(testKey)); in TEST_F()
98 EXPECT_TRUE(constTestMap.find(testKey) == constTestMap.end()); in TEST_F()
106 testMap[testKey] = testValue; in TEST_F()
112 testMap[testKey] = testValue; in TEST_F()
119 testMap[testKey] = testValue; in TEST_F()
126 testMap[testKey] = testValue; in TEST_F()
127 testMap.erase(testKey); in TEST_F()
133 testMap[testKey] = testValue; in TEST_F()
220 EXPECT_STREQ(testKey, entry->first().data()); in TEST_F()