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