| 76 | } |
| 77 | |
| 78 | TEST(OrderByNode, Basic) { |
| 79 | CheckOrderBy(OrderByNodeOptions(Ordering{{SortKey("up")}})); |
| 80 | CheckOrderBy(OrderByNodeOptions(Ordering{{SortKey("down", SortOrder::Descending)}})); |
| 81 | CheckOrderBy(OrderByNodeOptions( |
| 82 | Ordering{{SortKey("up"), SortKey("down", SortOrder::Descending)}})); |
| 83 | } |
| 84 | |
| 85 | TEST(OrderByNode, Large) { |
| 86 | constexpr random::SeedType kSeed = 42; |
nothing calls this directly
no test coverage detected