aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-03-01 16:43:12 -0600
committerJesse Luehrs <doy@tozt.net>2013-03-01 16:43:12 -0600
commitca1d35092cffa5504a624f04eb9efab054248840 (patch)
treeb5fb368481df61325e16668feb4f0066f89cf7c7
parent1d278221a709d2a26c73e76c4aeed1ba003fa6f3 (diff)
downloadscala-test-more-ca1d35092cffa5504a624f04eb9efab054248840.tar.gz
scala-test-more-ca1d35092cffa5504a624f04eb9efab054248840.zip
docs for plan-related stuff
-rw-r--r--src/main/scala/org/perl8/test/package.scala40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/main/scala/org/perl8/test/package.scala b/src/main/scala/org/perl8/test/package.scala
index d2b8373..1ef75fc 100644
--- a/src/main/scala/org/perl8/test/package.scala
+++ b/src/main/scala/org/perl8/test/package.scala
@@ -3,28 +3,68 @@ package org.perl8
package object test {
import language.implicitConversions
+ /** Converts an [[scala.Int Int]] to a [[NumericPlan]].
+ */
implicit def intToPlan (p: Int): Plan =
NumericPlan(p)
+ /** A test plan. This represents the TAP statement telling how many tests
+ * will be run.
+ */
sealed trait Plan {
+ /** How many tests will be run.
+ */
val plan: Int
+ /** Whether this test was skipped. It should contain `Some(message)` if
+ * the test is skipped, and `None` otherwise.
+ */
val skipAll: Option[String]
}
+ /** An explicit plan number. Corresponds to `1..5` in TAP.
+ */
case class NumericPlan (plan: Int) extends Plan {
+ /** @inheritdoc
+ *
+ * Always `None` for this class.
+ */
val skipAll = None
}
+ /** A test which did not declare a plan yet.
+ */
case object NoPlan extends Plan {
+ /** @inheritdoc
+ *
+ * Always 0 for this class.
+ */
val plan = 0
+ /** @inheritdoc
+ *
+ * Always `None` for this class.
+ */
val skipAll = None
}
+ /** A test which has declared that the entire test has been skipped.
+ * Corresponds to `1..0 # SKIP [message]` in TAP.
+ */
case class SkipAll (message: String) extends Plan {
+ /** @inheritdoc
+ *
+ * Always 0 for this class.
+ */
val plan = 0
+ /** @inheritdoc
+ *
+ * Never `None` for this class.
+ */
val skipAll = Some(message)
}
+ /** Exception thrown when a test bails out. Corresponds to
+ * `Bail out! [message]` in TAP.
+ */
case class BailOutException (
message: String
) extends RuntimeException(message)