| 70 | } |
| 71 | |
| 72 | bool IntegrationTestFramework::hasConnection(DataDescription const& data, uint64_t id, uint64_t otherId) const |
| 73 | { |
| 74 | auto cell = getCell(data, id); |
| 75 | for (auto const& connection : cell.connections) { |
| 76 | if (connection.cellId == otherId) { |
| 77 | return true; |
| 78 | } |
| 79 | } |
| 80 | return false; |
| 81 | } |
| 82 | |
| 83 | CellDescription IntegrationTestFramework::getOtherCell(DataDescription const& data, uint64_t id) const |
| 84 | { |
nothing calls this directly
no outgoing calls
no test coverage detected