Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/unittests/ADT/
H A DStringMapTest.cpp33 static const std::string testKeyStr; member in __anon7df7ecd90111::StringMapTest
46 EXPECT_EQ(0u, testMap.count(testKeyStr)); in assertEmptyMap()
50 EXPECT_TRUE(testMap.find(testKeyStr) == testMap.end()); in assertEmptyMap()
69 EXPECT_EQ(1u, testMap.count(testKeyStr)); in assertSingleItemMap()
73 EXPECT_TRUE(testMap.find(testKeyStr) == testMap.begin()); in assertSingleItemMap()
81 const std::string StringMapTest::testKeyStr(testKey);
112 EXPECT_EQ(0u, constTestMap.count(testKeyStr)); in TEST_F()
116 EXPECT_TRUE(constTestMap.find(testKeyStr) == constTestMap.end()); in TEST_F()