aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/scala/org/perl8/test/harness/TAPReporter.scala
blob: 58dd17515dfb4f1b520328647df9150c42e3fd50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package org.perl8.test.harness

import org.perl8.test.tap
import org.perl8.test.Test

/** Runs a single test. The TAP stream from that test is written directly to
  * stdout/stderr.
  */
class TAPReporter extends Reporter {
  def run (testName: String): Int =
    newInstance[Test](testName).run
}