Waits until a emits event that it is connected to b and b emits an event that it is connected to a.
(a: &mut TestRunner, b: &mut TestRunner)
| 224 | // Waits until a emits event that it is connected to b |
| 225 | // and b emits an event that it is connected to a. |
| 226 | async fn wait_bi_connected(a: &mut TestRunner, b: &mut TestRunner) { |
| 227 | wait_connected(a, b).await; |
| 228 | wait_connected(b, a).await; |
| 229 | } |
| 230 | // Waits until a emits event that it is connected to b |
| 231 | // and b emits an event that it is connected to a. |
| 232 | async fn wait_connected(a: &mut TestRunner, b: &mut TestRunner) { |
no test coverage detected