aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/scala/org/perl8/test/harness/MultiTestReporter.scala
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-03-06 15:32:26 -0600
committerJesse Luehrs <doy@tozt.net>2013-03-06 15:32:26 -0600
commit7efb2caf7d8832a7d3a9d2ac55862e43267a3eb2 (patch)
tree49fcb4d31bec67bcb67c1262abc25c5e5ecb1e51 /src/main/scala/org/perl8/test/harness/MultiTestReporter.scala
parent66bcf3627a38ef58dabaf90b7e597569b91ea3e8 (diff)
downloadscala-test-more-7efb2caf7d8832a7d3a9d2ac55862e43267a3eb2.tar.gz
scala-test-more-7efb2caf7d8832a7d3a9d2ac55862e43267a3eb2.zip
move the directory structure too
Diffstat (limited to 'src/main/scala/org/perl8/test/harness/MultiTestReporter.scala')
-rw-r--r--src/main/scala/org/perl8/test/harness/MultiTestReporter.scala16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/main/scala/org/perl8/test/harness/MultiTestReporter.scala b/src/main/scala/org/perl8/test/harness/MultiTestReporter.scala
deleted file mode 100644
index 56f32fd..0000000
--- a/src/main/scala/org/perl8/test/harness/MultiTestReporter.scala
+++ /dev/null
@@ -1,16 +0,0 @@
-package com.iinteractive.test.harness
-
-/** Classes that implement `MultiTestReporter` are capable of running a group
- * of test classes, given their names. This typically involves some sort of
- * summarization.
- *
- * @see [[com.iinteractive.test.harness.Reporter Reporter]].
- */
-trait MultiTestReporter {
- /** Runs the test classes identifed by the list of fully qualified class
- * names `testNames`.
- *
- * @return The exit code for the harness to use. Will be 0 on success.
- */
- def run (testNames: Seq[String]): Int
-}