| 3343 | using Decimal32Test = DecimalTest<Decimal32Type>; |
| 3344 | |
| 3345 | TEST_P(Decimal32Test, NoNulls) { |
| 3346 | int32_t precision = GetParam(); |
| 3347 | std::vector<Decimal32> draw = {Decimal32(1), Decimal32(-2), Decimal32(2389), |
| 3348 | Decimal32(4), Decimal32(-12348)}; |
| 3349 | std::vector<uint8_t> valid_bytes = {true, true, true, true, true}; |
| 3350 | this->TestCreate(precision, draw, valid_bytes, 0); |
| 3351 | this->TestCreate(precision, draw, valid_bytes, 2); |
| 3352 | } |
| 3353 | |
| 3354 | TEST_P(Decimal32Test, WithNulls) { |
| 3355 | int32_t precision = GetParam(); |
nothing calls this directly
no test coverage detected