Expand description
The source module tree of ktests.
In the KtestTree, the root is abstract, and the children of the root are the
crates. The leaves are the test functions. Nodes other than the root and the
leaves are modules.
Structs
- The
KtestCrateIterwill iterate over all modules in a crate. YeildingKtestModules. The iterator will return modules in the depth-first-search order of the module tree. - The
KtestModuleIterwill iterate over all tests in a crate. YeildingKtestItems. - The
KtestTreeIterwill iterate over all crates. YeildingKtestCrates.