| 1929 | } |
| 1930 | |
| 1931 | void CheckSchemaImportError() { |
| 1932 | SchemaReleaseCallback cb(&c_struct_); |
| 1933 | |
| 1934 | ASSERT_RAISES(Invalid, ImportSchema(&c_struct_)); |
| 1935 | ASSERT_TRUE(ArrowSchemaIsReleased(&c_struct_)); |
| 1936 | cb.AssertCalled(); // was released |
| 1937 | } |
| 1938 | }; |
| 1939 | |
| 1940 | TEST_F(TestSchemaImport, Primitive) { |
nothing calls this directly
no test coverage detected