Test whether the transport's session ID matches the session ID we expect. */
| 1362 | |
| 1363 | /** Test whether the transport's session ID matches the session ID we expect. */ |
| 1364 | void CompareSessionIDs() const |
| 1365 | { |
| 1366 | auto info = m_transport.GetInfo(); |
| 1367 | BOOST_CHECK(info.session_id); |
| 1368 | BOOST_CHECK(uint256(MakeUCharSpan(m_cipher.GetSessionID())) == *info.session_id); |
| 1369 | } |
| 1370 | |
| 1371 | /** Introduce a bit error in the data scheduled to be sent. */ |
| 1372 | void Damage() |
no test coverage detected