1//! A mockstream that implements std::io::Read, std::io::Write, tokio_io::AsyncRead and tokio_io::AsyncWrite.
2#![deny(missing_docs, warnings, missing_debug_implementations)]
3extern crate futures;
4extern crate tokio_io;
56pub mod mockstream;
78pub use mockstream::MockStream;