| 229 | } |
| 230 | |
| 231 | bool ChannelLinter::TestSequential(MockDeviceBridge& channel, MockDeviceBridge& complementary, ByteView data) |
| 232 | { |
| 233 | channel.Send(data); |
| 234 | auto received = complementary.Receive(); |
| 235 | return data == ByteView{ received[0] }; |
| 236 | } |
| 237 | |
| 238 | |
| 239 | void ChannelLinter::TestCommand(std::shared_ptr<MockDeviceBridge> const& channel) |