aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/scala/org/perl8/test/Test.scala
blob: cc79df82547b41bd9c9e5980b2bde1067b99cd32 (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 (): Unit
}