| 3293 | using Decimal32Test = DecimalTest<Decimal32Type>; |
| 3294 | |
| 3295 | TEST_P(Decimal32Test, NoNulls) { |
| 3296 | int32_t precision = GetParam(); |
| 3297 | std::vector<Decimal32> draw = {Decimal32(1), Decimal32(-2), Decimal32(2389), |
| 3298 | Decimal32(4), Decimal32(-12348)}; |
| 3299 | std::vector<uint8_t> valid_bytes = {true, true, true, true, true}; |
| 3300 | this->TestCreate(precision, draw, valid_bytes, 0); |
| 3301 | this->TestCreate(precision, draw, valid_bytes, 2); |
| 3302 | } |
| 3303 | |
| 3304 | TEST_P(Decimal32Test, WithNulls) { |
| 3305 | int32_t precision = GetParam(); |
nothing calls this directly
no test coverage detected