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

/** Base trait for test classes in this framework
  */
trait Test {
  /** Runs the test. The TAP stream will be written to Console.out and
    * Console.err, so you can swap these out as required in order to parse it.
    */
  def run (): Int
}