org.scalatest.run.scala Maven / Gradle / Ivy
Show all versions of scalatest_2.9.0 Show documentation
/*
* Copyright 2001-2011 Artima, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.scalatest
/**
* Singleton object providing an apply
method for the ScalaTest shell and a
* main
method for ScalaTest's simple runner.
*
*
* The apply
method can be used in the ScalaTest Shell (its DSL for the Scala
* interpreter) in this way:
*
*
*
* scala> import org.scalatest._
* import org.scalatest._
*
* scala> class ArithmeticSuite extends FunSuite with ShouldMatchers {
* | test("addition works") {
* | 1 + 1 should equal (2)
* | }
* | ignore("subtraction works") {
* | 1 - 1 should equal (0)
* | }
* | test("multiplication works") {
* | 1 * 1 should equal (2)
* | }
* | test("division works") (pending)
* | }
* defined class ArithmeticSuite
*
* scala> run(new ArithmeticSuite)
* ArithmeticSuite:
* - addition works
* - subtraction works !!! IGNORED !!!
* - multiplication works *** FAILED ***
* 1 did not equal 2 (:16)
* - division works (pending)
*
*
*
* The last command is calling the apply
method on the run
singleton object. In other
* words, you could alternatively call it this way:
*
*
*
* scala> run.apply(new ArithmeticSuite)
* ArithmeticSuite:
* - addition works
* - subtraction works !!! IGNORED !!!
* - multiplication works *** FAILED ***
* 1 did not equal 2 (:16)
* - division works (pending)
*
*
*
* The run
singleton object also serves a different purpose. Its main
method
* allows users to "run" run
as a Scala application. ScalaTest's Runner
application is very
* powerful, but doesn't provide the simplest out-of-box experience for people trying ScalaTest for the first time. For example,
* to run an ExampleSpec
in the unnamed package from the directory where it is compiled with
* Runner
's standard out reporter requires this command:
*
*
*
* $ scala -cp scalatest-RELEASE.jar org.scalatest.tools.Runner -R . -o -s ExampleSpec
*
*
*
* Running it with the run
application is simpler:
*
*
*
* $ scala -cp scalatest-RELEASE.jar org.scalatest.run ExampleSpec
*
*
*
*/
object run {
private val defaultShell = ShellImpl()
/**
* Run the suites whose fully qualified names are passed as arguments.
*
*
* This method will invoke the main method of org.scalatest.tools.Runner
, passing
* in "-R ."
to set the runpath to the current directory, "-o"
to select the
* standard out reporter, and each argument preceded by -s
. For example, this run
* command:
*
*
*
* $ scala -cp scalatest-RELEASE.jar org.scalatest.run ExampleSpec
*
*
*
* Has the same effect as this Runner
command:
*
*
*
* $ scala -cp scalatest-RELEASE.jar org.scalatest.tools.Runner -R . -o -s ExampleSpec
*
*
* @param args
*/
def main(args: Array[String]) {
tools.Runner.main(Array("-R", ".", "-o") ++ args.flatMap(s => Array("-s", s)))
}
/**
* Run the passed suite, optionally passing in a test name and config map.
*
*
* This method will invoke execute
on the passed suite
, passing in
* the specified (or default) testName
and configMap
and the configuration values
* passed to this Shell
's constructor (colorPassed
, durationsPassed
, shortStacksPassed
,
* fullStacksPassed
, and statsPassed
).
*
*/
def apply(suite: Suite, testName: String = null, configMap: Map[String, Any] = Map()) {
defaultShell.run(suite, testName, configMap)
}
}