aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-02-23 15:18:44 -0600
committerJesse Luehrs <doy@tozt.net>2013-02-23 15:18:44 -0600
commit18854928e8697f733d2758d274151999bcc4a238 (patch)
treea33969a1e321f33a87ae640cf515910e428ba5cc /src
parent6d4f400455f40561c853393249cda97f832ce61f (diff)
downloadscala-test-more-18854928e8697f733d2758d274151999bcc4a238.tar.gz
scala-test-more-18854928e8697f733d2758d274151999bcc4a238.zip
start working on docs
Diffstat (limited to 'src')
-rw-r--r--src/main/scala/org/perl8/test/Test.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/scala/org/perl8/test/Test.scala b/src/main/scala/org/perl8/test/Test.scala
index ec11fab..93933dd 100644
--- a/src/main/scala/org/perl8/test/Test.scala
+++ b/src/main/scala/org/perl8/test/Test.scala
@@ -1,5 +1,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
}