| 81 | }; |
| 82 | |
| 83 | TEST_F(SimpleVectorNonParameterizedTest, ConstantVectorTest) { |
| 84 | ExpectedData<int64_t> expected(10, 123456); |
| 85 | auto vector = |
| 86 | maker_.encodedVector(VectorEncoding::Simple::CONSTANT, expected); |
| 87 | assertVectorAndProperties(expected, vector); |
| 88 | } |
| 89 | |
| 90 | TEST_F(SimpleVectorNonParameterizedTest, ConstantVectorTestIsNull) { |
| 91 | ExpectedData<int64_t> expected(10, std::nullopt); |
nothing calls this directly
no test coverage detected