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

Function TEST

library/cpp/yt/string/unittests/string_ut.cpp:30–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28////////////////////////////////////////////////////////////////////////////////
29
30TEST(TStringTest, UnderscoreCaseToCamelCase)
31{
32 for (const auto& testCase : TestCases) {
33 auto result = UnderscoreCaseToCamelCase(testCase.UnderCase);
34 EXPECT_STREQ(testCase.CamelCase, result.c_str())
35 << "Original: \"" << testCase.UnderCase << '"';
36 }
37}
38
39TEST(TStringTest, CamelCaseToUnderscoreCase)
40{

Callers

nothing calls this directly

Calls 5

TrimLeadingWhitespacesFunction · 0.85
TrimFunction · 0.50
c_strMethod · 0.45

Tested by

no test coverage detected