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

Function AssertArraysEqual

cpp/src/arrow/testing/gtest_util.cc:115–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

113}
114
115void AssertArraysEqual(const Array& expected, const Array& actual, bool verbose,
116 const EqualOptions& options) {
117 return AssertArraysEqualWith(
118 expected, actual, verbose,
119 [&](const Array& expected, const Array& actual, std::stringstream* diff) {
120 return expected.Equals(actual, options.diff_sink(diff));
121 });
122}
123
124void AssertArraysApproxEqual(const Array& expected, const Array& actual, bool verbose,
125 const EqualOptions& options) {

Callers 15

TESTFunction · 0.85
AssertOutputsEqualMethod · 0.85
TEST_FFunction · 0.85
TESTFunction · 0.85
TestWithArrayFactoryMethod · 0.85
TESTFunction · 0.85
TESTMethod · 0.85
TestUnionConversionFunction · 0.85
TESTFunction · 0.85
TESTFunction · 0.85

Calls 2

AssertArraysEqualWithFunction · 0.85
EqualsMethod · 0.45

Tested by

no test coverage detected