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

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

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