| 40 | } |
| 41 | |
| 42 | std::unordered_map<uint64_t, CellDescription> IntegrationTestFramework::getCellById(DataDescription const& data) const |
| 43 | { |
| 44 | std::unordered_map<uint64_t, CellDescription> result; |
| 45 | for(auto const& cell : data.cells) { |
| 46 | result.emplace(cell.id, cell); |
| 47 | } |
| 48 | return result; |
| 49 | } |
| 50 | |
| 51 | CellDescription IntegrationTestFramework::getCell(DataDescription const& data, uint64_t id) const |
| 52 | { |
nothing calls this directly
no outgoing calls
no test coverage detected