| 78 | }; |
| 79 | |
| 80 | TEST_F(TestFixedShapeTensorType, CheckDummyRegistration) { |
| 81 | // We need a registered dummy type at runtime to allow for IPC deserialization |
| 82 | auto registered_type = GetExtensionType("arrow.fixed_shape_tensor"); |
| 83 | ASSERT_EQ(registered_type->id(), Type::EXTENSION); |
| 84 | } |
| 85 | |
| 86 | TEST_F(TestFixedShapeTensorType, CreateExtensionType) { |
| 87 | auto exact_ext_type = internal::checked_pointer_cast<FixedShapeTensorType>(ext_type_); |
no test coverage detected