Searched refs:testKeyStr (Results 1 - 1 of 1) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/unittests/ADT/
H A DStringMapTest.cpp26 static const std::string testKeyStr; member in class:__anon10736::StringMapTest
39 EXPECT_EQ(0u, testMap.count(testKeyStr));
43 EXPECT_TRUE(testMap.find(testKeyStr) == testMap.end());
62 EXPECT_EQ(1u, testMap.count(testKeyStr));
66 EXPECT_TRUE(testMap.find(testKeyStr) == testMap.begin());
74 const std::string StringMapTest::testKeyStr(testKey);
95 EXPECT_EQ(0u, constTestMap.count(testKeyStr));
99 EXPECT_TRUE(constTestMap.find(testKeyStr) == constTestMap.end());

Completed in 167 milliseconds