pub fn output_test_result<T: Write>(
stream: T,
result: &TestResult,
test_num: usize,
colored: bool,
)Expand description
Output the test results to the desired stream. This function is public only to give
availability to the test initializer. If you wish to generate test
output, consider RunnableTestSet::run.