| 220 | }; |
| 221 | |
| 222 | TEST(Decimal32Test, TestIntMinNegate) { |
| 223 | Decimal32 d(INT32_MIN); |
| 224 | auto neg = d.Negate(); |
| 225 | ASSERT_EQ(neg, Decimal32(arrow::internal::SafeSignedNegate(INT32_MIN))); |
| 226 | } |
| 227 | |
| 228 | TEST(Decimal32Test, TestIntMinFitsPrecision) { |
| 229 | Decimal32 d(INT32_MIN); |
nothing calls this directly
no test coverage detected