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

Method TestOperatorsCI

util/generic/string_ut.h:798–808  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

796 }
797
798 void TestOperatorsCI() {
799 TStringType s(Data.ABCD());
800 UNIT_ASSERT(s > Data.abc0123456xyz());
801 UNIT_ASSERT(s == Data.abcd());
802
803 using TCIStringBuf = TBasicStringBuf<char_type, traits_type>;
804
805 UNIT_ASSERT(s > TCIStringBuf(Data.abc0123456xyz()));
806 UNIT_ASSERT(TCIStringBuf(Data.abc0123456xyz()) < s);
807 UNIT_ASSERT(s == TCIStringBuf(Data.abcd()));
808 }
809
810 void TestMulOperators() {
811 {

Callers

nothing calls this directly

Calls 3

ABCDMethod · 0.80
abc0123456xyzMethod · 0.80
abcdMethod · 0.80

Tested by

no test coverage detected