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