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, replacing 1.5 with whatever version you desire:

val scalatest = "org.scalatest" % "scalatest_2.8.1" % "1.5"

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. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

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

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

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

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

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

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

    Definition Classes
    Any
  14. 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
  15. final def ne(arg0: AnyRef): Boolean

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

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

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

    Definition Classes
    AnyRef
  19. 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
  20. 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
  21. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from Framework

Inherited from AnyRef

Inherited from Any

Ungrouped