| 59 | } |
| 60 | |
| 61 | ConnectionDescription IntegrationTestFramework::getConnection(DataDescription const& data, uint64_t id, uint64_t otherId) const |
| 62 | { |
| 63 | auto cell = getCell(data, id); |
| 64 | for (auto const& connection : cell.connections) { |
| 65 | if (connection.cellId == otherId) { |
| 66 | return connection; |
| 67 | } |
| 68 | } |
| 69 | THROW_NOT_IMPLEMENTED(); |
| 70 | } |
| 71 | |
| 72 | bool IntegrationTestFramework::hasConnection(DataDescription const& data, uint64_t id, uint64_t otherId) const |
| 73 | { |
nothing calls this directly
no outgoing calls
no test coverage detected