On Wed, Aug 29, 2018 at 2:03 PM Cristian Morales Vega via Boost-users
There is any good set of ASIO I/O object fakes available?
Beast experimental interfaces provide testing facilities which meet the requirements of the following Asio concepts: SyncReadStream SyncWriteStream AsyncReadStream AsyncWriteStream This is provided by the boost::beast::test::stream class, which works with the test::fail_counter class to allow for automated failure testing. Docs: https://www.boost.org/doc/libs/1_68_0/libs/beast/doc/html/beast/ref/boost__b... https://www.boost.org/doc/libs/1_68_0/libs/beast/doc/html/beast/ref/boost__b... https://www.boost.org/doc/libs/1_68_0/libs/beast/doc/html/beast/ref/boost__b... https://www.boost.org/doc/libs/1_68_0/libs/beast/doc/html/beast/ref/boost__b... Includes: https://github.com/boostorg/beast/tree/develop/include/boost/beast/experimen... The Beast unit tests make heavy use of the test::stream class. Example: https://github.com/boostorg/beast/blob/1da229a27c6f0539d422bcedbcf47cfe25171... If you have questions feel free to open an issue. Regards