| 81 | } |
| 82 | |
| 83 | CellDescription IntegrationTestFramework::getOtherCell(DataDescription const& data, uint64_t id) const |
| 84 | { |
| 85 | for (auto const& cell : data.cells) { |
| 86 | if (cell.id != id) { |
| 87 | return cell; |
| 88 | } |
| 89 | } |
| 90 | THROW_NOT_IMPLEMENTED(); |
| 91 | } |
| 92 | |
| 93 | CellDescription IntegrationTestFramework::getOtherCell(DataDescription const& data, std::set<uint64_t> ids) const |
| 94 | { |
nothing calls this directly
no outgoing calls
no test coverage detected