Usage:
```rust use tokio::sync::mpsc; use axum::extract::ws::Message;
let (tx1, rx1) = mpsc::unboundedchannel(); let (tx2, mut rx2) = mpsc::unbounded_channel();
let socket = FakeSocket::::new(rx1, tx2); // use it as a websocket in your test ```