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

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

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