org.scalatest.tools

ScalaTestFramework

class ScalaTestFramework extends Framework

Class that makes ScalaTest tests visible to sbt.

To use ScalaTest from within sbt, simply add a line like this to your project file (for sbt 0.1.0 or higher):

libraryDependencies += "org.scalatest" % "scalatest_2.9.0" % "1.6.1" % "test"

The above line of code will work for any version of Scala 2.9 (for example, it works for Scala 2.9.0-1).

libraryDependencies += "org.scalatest" % "scalatest_2.8.1" % "1.5.1" % "test"

You can configure the output shown when running with sbt in four ways: 1) turn off color, 2) show short stack traces, 3) full stack traces, and 4) show durations for everything. To do that you need to add test options, like this:

override def testOptions = super.testOptions ++
  Seq(TestArgument(TestFrameworks.ScalaTest, "-oD"))

After the -o, place any combination of:

For example, "-oDF" would show full stack traces and durations (the amount of time spent in each test).

Linear Supertypes
Framework, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ScalaTestFramework
  2. Framework
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ScalaTestFramework()

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. object RunConfig

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  12. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  15. def name(): String

    Returns "ScalaTest", the human readable name for this test framework.

    Returns "ScalaTest", the human readable name for this test framework.

    Definition Classes
    ScalaTestFramework → Framework
  16. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  19. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  20. def testRunner(testLoader: ClassLoader, loggers: Array[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.

    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.

    Definition Classes
    ScalaTestFramework → Framework
  21. def tests(): Array[Fingerprint]

    Returns an array containing fingerprint for ScalaTest's test, which are classes whose superclass name is org.scalatest.Suite or is annotated with org.scalatest.WrapWith.

    Returns an array containing fingerprint for ScalaTest's test, which are classes whose superclass name is org.scalatest.Suite or is annotated with org.scalatest.WrapWith.

    Definition Classes
    ScalaTestFramework → Framework
  22. def toString(): String

    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  24. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  25. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from Framework

Inherited from AnyRef

Inherited from Any

Ungrouped