(self)
| 223 | |
| 224 | class TestQueryExecutor: |
| 225 | def test_init(self): |
| 226 | schema = MockCollectionSchema() |
| 227 | executor = QueryExecutor(schema) |
| 228 | assert isinstance(executor, QueryExecutor) |
| 229 | |
| 230 | def test_do_build_without_queries(self): |
| 231 | # When no queries are given, build a single vector-less query. |
nothing calls this directly
no test coverage detected