test-casing 0.1.3

Parameterized test cases and test decorators
Documentation
1
2
3
4
5
6
7
8
9
//! Integration tests for crate functionality.

#![cfg_attr(feature = "nightly", feature(test, custom_test_frameworks))]
// Enable additional lints to ensure that the code produced by the macro doesn't raise warnings.
#![warn(missing_debug_implementations, missing_docs, bare_trait_objects)]
#![warn(clippy::all, clippy::pedantic)]

mod decorate;
mod test_casing;