| 49 | } |
| 50 | |
| 51 | CellDescription IntegrationTestFramework::getCell(DataDescription const& data, uint64_t id) const |
| 52 | { |
| 53 | for (auto const& cell : data.cells) { |
| 54 | if (cell.id == id) { |
| 55 | return cell; |
| 56 | } |
| 57 | } |
| 58 | THROW_NOT_IMPLEMENTED(); |
| 59 | } |
| 60 | |
| 61 | ConnectionDescription IntegrationTestFramework::getConnection(DataDescription const& data, uint64_t id, uint64_t otherId) const |
| 62 | { |
nothing calls this directly
no outgoing calls
no test coverage detected