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

Function TestIntUpTo8

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

Source from the content-addressed store, hash-verified

173
174template <typename FormatterType>
175void TestIntUpTo8(FormatterType& formatter) {
176 TestAnyIntUpTo8(formatter);
177 AssertFormatting(formatter, -1, "-1");
178 AssertFormatting(formatter, -9, "-9");
179 AssertFormatting(formatter, -10, "-10");
180 AssertFormatting(formatter, -99, "-99");
181 AssertFormatting(formatter, -100, "-100");
182 AssertFormatting(formatter, -127, "-127");
183 AssertFormatting(formatter, -128, "-128");
184}
185
186template <typename FormatterType>
187void TestIntUpTo16(FormatterType& formatter) {

Callers 2

TestIntUpTo16Function · 0.85
TESTFunction · 0.85

Calls 2

TestAnyIntUpTo8Function · 0.85
AssertFormattingFunction · 0.85

Tested by

no test coverage detected