ScalaTest 0.9.5

This document is the API specification for ScalaTest 0.9.5

Class Summary
trait Checkers extends AnyRef
Trait that contains several “check” methods that perform ScalaCheck property checks. If ScalaCheck finds a test case for which a property doesn't hold, the problem will be reported as a ScalaTest test failure.
trait FunSuite extends FunSuite with Checkers
Deprecated: mix in Checkers and make explicit calls to check instead. This trait will be removed in a future version of ScalaTest.
trait PropSuite extends FunSuite with Checkers
Deprecated: mix in Checkers and make explicit calls to check instead. This trait will be removed in a future version of ScalaTest.
class PropertyTestFailedException (message : java.lang.String, cause : scala.Option[java.lang.Throwable], failedTestCodeStackDepth : Int, val undecoratedMessage : java.lang.String, val args : scala.List[Any], val labels : scala.List[java.lang.String]) extends TestFailedException
Exception that indicates a test failed. The purpose of this exception is to encapsulate information about the stack depth at which the line of test code that failed resides, so that information can be presented to the user that makes it quick to find the failing line of test code. (I.e., the user need not scan through the stack trace to find the correct filename and line number of the failing test.)