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

Function TestAnyIntUpTo16

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

Source from the content-addressed store, hash-verified

76
77template <typename FormatterType>
78void TestAnyIntUpTo16(FormatterType& formatter) {
79 TestAnyIntUpTo8(formatter);
80 AssertFormatting(formatter, 999, "999");
81 AssertFormatting(formatter, 1000, "1000");
82 AssertFormatting(formatter, 9999, "9999");
83 AssertFormatting(formatter, 10000, "10000");
84 AssertFormatting(formatter, 32767, "32767");
85}
86
87template <typename FormatterType>
88void TestAnyIntUpTo32(FormatterType& formatter) {

Callers 3

TestAnyIntUpTo32Function · 0.85
TestUIntUpTo16Function · 0.85
TestIntUpTo16Function · 0.85

Calls 2

TestAnyIntUpTo8Function · 0.85
AssertFormattingFunction · 0.85

Tested by

no test coverage detected