MCPcopy Create free account
hub / github.com/catboost/catboost / TEST

Function TEST

library/cpp/iterator/ut/iterate_keys_ut.cpp:9–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7using namespace testing;
8
9TEST(IterateKeys, ConstMappingIteration) {
10 const std::map<int, int> squares{
11 {1, 1},
12 {2, 4},
13 {3, 9},
14 };
15 EXPECT_THAT(
16 IterateKeys(squares),
17 ElementsAre(1, 2, 3)
18 );
19}
20
21TEST(IterateKeys, ConstMultiMappingIteration) {
22 const std::multimap<int, int> primesBelow{

Callers

nothing calls this directly

Calls 2

IterateKeysFunction · 0.85
ElementsAreFunction · 0.85

Tested by

no test coverage detected