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

import java.io.ByteArrayOutputStream

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

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