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

Function TestIntUpTo32

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

Source from the content-addressed store, hash-verified

197
198template <typename FormatterType>
199void TestIntUpTo32(FormatterType& formatter) {
200 TestAnyIntUpTo32(formatter);
201 TestIntUpTo16(formatter);
202 AssertFormatting(formatter, -32769, "-32769");
203 AssertFormatting(formatter, -99999, "-99999");
204 AssertFormatting(formatter, -1000000000, "-1000000000");
205 AssertFormatting(formatter, -1234567890, "-1234567890");
206 AssertFormatting(formatter, -2147483647, "-2147483647");
207 AssertFormatting(formatter, -2147483647 - 1, "-2147483648");
208}
209
210template <typename FormatterType>
211void TestIntUpTo64(FormatterType& formatter) {

Callers 2

TestIntUpTo64Function · 0.85
TESTFunction · 0.85

Calls 3

TestAnyIntUpTo32Function · 0.85
TestIntUpTo16Function · 0.85
AssertFormattingFunction · 0.85

Tested by

no test coverage detected