| 86 | }; |
| 87 | |
| 88 | TEST_F(TestPairwiseDiff, Empty) { |
| 89 | for (int64_t period = -2; period <= 2; ++period) { |
| 90 | PairwiseOptions options(period); |
| 91 | for (auto input_type : test_input_types_) { |
| 92 | ASSERT_OK_AND_ASSIGN(auto output_type, GetOutputType(input_type)); |
| 93 | auto input = ArrayFromJSON(input_type, "[]"); |
| 94 | auto output = ArrayFromJSON(output_type, "[]"); |
| 95 | CheckVectorUnary("pairwise_diff", input, output, &options); |
| 96 | } |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | TEST_F(TestPairwiseDiff, AllNull) { |
| 101 | for (int64_t period = -2; period <= 2; ++period) { |
nothing calls this directly
no test coverage detected