xrust/testutils/mod.rs
1/*! A generic test suite.
2
3Most of xrust's modules are written to use the generic Node trait. However, to test their functionality a concrete implementation must be used. Rather than writing, and rewriting, the same set of tests for each concrete implementation, all of the tests have been written as macros. An implementation can then be tested by calling the macros using the type that implements Node.
4*/
5
6pub mod item_node;
7pub mod item_value;
8//pub mod pattern_tests;