aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/scala/org/perl8/test/harness/MultiTestReporter.scala
blob: 56f32fd14635e859566e003ef801a3d54f70b14c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
}