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

import java.io.OutputStream

import org.perl8.test.Test
import Utils._

class TAPReporter extends Reporter {
  def run (testName: String): Int =
    newInstance[Test, OutputStream](testName, System.out).run
}