| 146 | } |
| 147 | |
| 148 | std::set<InstrumentsDescription> Framework::available_instruments() const |
| 149 | { |
| 150 | std::set<InstrumentsDescription> types; |
| 151 | |
| 152 | for (const auto &instrument : _available_instruments) |
| 153 | { |
| 154 | types.emplace(instrument.first); |
| 155 | } |
| 156 | |
| 157 | return types; |
| 158 | } |
| 159 | |
| 160 | std::map<TestResult::Status, int> Framework::count_test_results() const |
| 161 | { |