catalyst 0.2.9

A lightweight API testing tool
Documentation
1
2
3
4
5
6
7
8
9
10
//! Output formatting and display logic
//! 
//! This module handles all test result formatting and display concerns,
//! separating them from the core test execution logic in TestRunner.

pub mod formatter;
pub mod summary;

pub use formatter::*;
pub use summary::*;