| 43 | }; |
| 44 | |
| 45 | TEST_F(QueryConfigTest, emptyConfig) { |
| 46 | auto queryCtx = QueryCtx::create(nullptr, QueryConfig{{}}); |
| 47 | const QueryConfig& config = queryCtx->queryConfig(); |
| 48 | |
| 49 | ASSERT_FALSE(config.isLegacyCast()); |
| 50 | } |
| 51 | |
| 52 | TEST_F(QueryConfigTest, setConfig) { |
| 53 | std::string path = "/tmp/setConfig"; |
nothing calls this directly
no test coverage detected