| 113 | } |
| 114 | |
| 115 | void 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 | |
| 124 | void AssertArraysApproxEqual(const Array& expected, const Array& actual, bool verbose, |
| 125 | const EqualOptions& options) { |
no test coverage detected