| 837 | } |
| 838 | |
| 839 | void CheckSpanRoundTrip(const Array& array) { |
| 840 | ArraySpan span; |
| 841 | span.SetMembers(*array.data()); |
| 842 | std::shared_ptr<Array> array2 = span.ToArray(); |
| 843 | AssertArraysEqual(array, *array2); |
| 844 | } |
| 845 | |
| 846 | TEST_F(TestArray, TestMakeEmptyArray) { |
| 847 | for (auto type : TestArrayUtilitiesAgainstTheseTypes()) { |
no test coverage detected