sealrs/testkit/mod.rs
1//! A set of tools for testing code based on the library
2//!
3//! Testing asynchronous code is complicated. In most cases, it's comes down to few high-level
4//! integration tests, which cover only main functions of the program. And if with integrations
5//! tests all looks more or less good, then with unit testing is all is no. Practically is
6//! impossible perform quality unit testing, if framework developer does was not presented explicit
7//! tools for this. This modules presents this tools and allows to library users, perform deep unit
8//! testing of their code. For more details, see docs for concrete submodule.
9
10#[macro_use]
11pub mod macrodef;
12#[macro_use]
13pub mod actors;