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

import com.iinteractive.test.tap
import com.iinteractive.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
}