|
ScalaTest 1.1
|
|
class
ScalaTestFramework
extends org.scalatools.testing.Framework with AnyRef| Method Summary | |
def
|
name
: java.lang.String
Returns
"ScalaTest", the human readable name for this test framework. |
def
|
testRunner
(testLoader : java.lang.ClassLoader, loggers : scala.Array[org.scalatools.testing.Logger]) : ScalaTestRunner
Returns an
org.scalatools.testing.Runner that will load test classes via the passed testLoader
and direct output from running the tests to the passed array of Loggers. |
def
|
tests
: scala.Array[org.scalatools.testing.Fingerprint]
Returns an array containing one
org.scalatools.testing.TestFingerprint object, whose superclass name is org.scalatest.Suite
and isModule value is false. |
| Methods inherited from AnyRef | |
| getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
| Method Details |
def
name : java.lang.String
"ScalaTest", the human readable name for this test framework.
def
tests : scala.Array[org.scalatools.testing.Fingerprint]
org.scalatools.testing.TestFingerprint object, whose superclass name is org.scalatest.Suite
and isModule value is false.
def
testRunner(testLoader : java.lang.ClassLoader, loggers : scala.Array[org.scalatools.testing.Logger]) : ScalaTestRunner
org.scalatools.testing.Runner that will load test classes via the passed testLoader
and direct output from running the tests to the passed array of Loggers.|
ScalaTest 1.1
|
|