MCPcopy Create free account
hub / github.com/apache/arrow / TestAnyIntUpTo8

Function TestAnyIntUpTo8

cpp/src/arrow/util/formatting_util_test.cc:67–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65
66template <typename FormatterType>
67void TestAnyIntUpTo8(FormatterType& formatter) {
68 AssertFormatting(formatter, 0, "0");
69 AssertFormatting(formatter, 1, "1");
70 AssertFormatting(formatter, 9, "9");
71 AssertFormatting(formatter, 10, "10");
72 AssertFormatting(formatter, 99, "99");
73 AssertFormatting(formatter, 100, "100");
74 AssertFormatting(formatter, 127, "127");
75}
76
77template <typename FormatterType>
78void TestAnyIntUpTo16(FormatterType& formatter) {

Callers 3

TestAnyIntUpTo16Function · 0.85
TestUIntUpTo8Function · 0.85
TestIntUpTo8Function · 0.85

Calls 1

AssertFormattingFunction · 0.85

Tested by

no test coverage detected