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

Function TestIntUpTo16

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

Source from the content-addressed store, hash-verified

185
186template <typename FormatterType>
187void TestIntUpTo16(FormatterType& formatter) {
188 TestAnyIntUpTo16(formatter);
189 TestIntUpTo8(formatter);
190 AssertFormatting(formatter, -129, "-129");
191 AssertFormatting(formatter, -999, "-999");
192 AssertFormatting(formatter, -1000, "-1000");
193 AssertFormatting(formatter, -9999, "-9999");
194 AssertFormatting(formatter, -10000, "-10000");
195 AssertFormatting(formatter, -32768, "-32768");
196}
197
198template <typename FormatterType>
199void TestIntUpTo32(FormatterType& formatter) {

Callers 2

TestIntUpTo32Function · 0.85
TESTFunction · 0.85

Calls 3

TestAnyIntUpTo16Function · 0.85
TestIntUpTo8Function · 0.85
AssertFormattingFunction · 0.85

Tested by

no test coverage detected