summaryrefslogtreecommitdiff
path: root/cli/tools/test/reporters/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tools/test/reporters/mod.rs')
-rw-r--r--cli/tools/test/reporters/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/tools/test/reporters/mod.rs b/cli/tools/test/reporters/mod.rs
index a95c729dd..35d2776e4 100644
--- a/cli/tools/test/reporters/mod.rs
+++ b/cli/tools/test/reporters/mod.rs
@@ -7,11 +7,13 @@ mod compound;
mod dot;
mod junit;
mod pretty;
+mod tap;
pub use compound::CompoundTestReporter;
pub use dot::DotTestReporter;
pub use junit::JunitTestReporter;
pub use pretty::PrettyTestReporter;
+pub use tap::TapTestReporter;
pub trait TestReporter {
fn report_register(&mut self, description: &TestDescription);