| 128 | } |
| 129 | |
| 130 | void Find(const ModuleContext* context, const std::string& /*name*/, |
| 131 | const std::string& /*filter*/, ShrinkableVector<ServiceReferenceBase>& references) override |
| 132 | { |
| 133 | US_TEST_CONDITION(context == GetModuleContext(), "Module context"); |
| 134 | |
| 135 | references.clear(); |
| 136 | ordering.push_back(id); |
| 137 | } |
| 138 | |
| 139 | static std::vector<int> ordering; |
| 140 | }; |
nothing calls this directly
no test coverage detected