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

Function TestUIntUpTo64

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

Source from the content-addressed store, hash-verified

140
141template <typename FormatterType>
142void TestUIntUpTo64(FormatterType& formatter) {
143 TestAnyIntUpTo64(formatter);
144 AssertFormatting(formatter, 9999999999999999999ULL, "9999999999999999999");
145 AssertFormatting(formatter, 10000000000000000000ULL, "10000000000000000000");
146 AssertFormatting(formatter, 12345678901234567890ULL, "12345678901234567890");
147 AssertFormatting(formatter, 18446744073709551615ULL, "18446744073709551615");
148}
149
150TEST(Formatting, UInt8) {
151 StringFormatter<UInt8Type> formatter;

Callers 1

TESTFunction · 0.85

Calls 2

TestAnyIntUpTo64Function · 0.85
AssertFormattingFunction · 0.85

Tested by

no test coverage detected