| 72 | } |
| 73 | |
| 74 | TEST(FetchNode, Basic) { |
| 75 | CheckFetch({0, 20}); |
| 76 | CheckFetch({20, 20}); |
| 77 | CheckFetch({0, 1000}); |
| 78 | CheckFetch({1000, 20}); |
| 79 | CheckFetch({50, 50}); |
| 80 | CheckFetch({0, 0}); |
| 81 | } |
| 82 | |
| 83 | TEST(FetchNode, RecordBatchReaderSource) { |
| 84 | constexpr random::SeedType kSeed = 42; |
nothing calls this directly
no test coverage detected