Test GDAL driver manager access
| 41 | |
| 42 | // Test GDAL driver manager access |
| 43 | TEST_F(test_gdal, driver_manager) |
| 44 | { |
| 45 | GDALDriverManager *drv_mgr = nullptr; |
| 46 | drv_mgr = GetGDALDriverManager(); |
| 47 | ASSERT_TRUE(nullptr != drv_mgr); |
| 48 | } |
| 49 | |
| 50 | // Test that GDALRegisterPlugins can be called |
| 51 | TEST_F(test_gdal, register_plugins) |
nothing calls this directly
no test coverage detected