Searched refs:keySet (Results 1 – 2 of 2) sorted by relevance
397 KeySet keySet; in template_methods() local398 keySet.insert(Key(1)); in template_methods()399 keySet.insert(Key(2)); in template_methods()400 keySet.insert(Key(3)); in template_methods()401 keySet.insert(Key(4)); in template_methods()403 CPPUNIT_ASSERT( keySet.count(Key(1)) == 1 ); in template_methods()404 CPPUNIT_ASSERT( keySet.count(1) == 1 ); in template_methods()405 CPPUNIT_ASSERT( keySet.count(5) == 0 ); in template_methods()407 CPPUNIT_ASSERT( keySet.find(2) != keySet.end() ); in template_methods()408 CPPUNIT_ASSERT( keySet.lower_bound(2) != keySet.end() ); in template_methods()[all …]