| 1780 | }; |
| 1781 | |
| 1782 | TEST_F(ALPTest, SupportedFloatTypes) |
| 1783 | { |
| 1784 | std::vector<DataTypePtr> supported_types = { |
| 1785 | std::make_shared<DataTypeFloat32>(), |
| 1786 | std::make_shared<DataTypeFloat64>() |
| 1787 | }; |
| 1788 | |
| 1789 | for (const auto & type : supported_types) |
| 1790 | ASSERT_NO_THROW(makeCodec("ALP", type)) << "ALP codec should accept " << type->getName(); |
| 1791 | } |
| 1792 | |
| 1793 | TEST_F(ALPTest, UnsupportedFloatTypes) |
| 1794 | { |