Fix spelling error.

waywardmonkeys 2011-12-01 07:30:19 -08:00
parent 4a6b8d0027
commit 325484bad5
1 changed files with 4 additions and 4 deletions

@ -227,7 +227,7 @@ object B extends Build
}
```
Instead of using the builtin configuration, we defined a new one:
Instead of using the built-in configuration, we defined a new one:
```scala
lazy val FunTest = config("fun") extend(Test)
@ -307,7 +307,7 @@ To run tests for the added configuration (here, `"fun"`), prefix it with the con
### Application to parallel execution
One use for this shared-source approach is to separate tests that can run in parallel from those that must execute serially.
Appy the procedure described in this section for an additional configuration.
Apply the procedure described in this section for an additional configuration.
Let's call the configuration `serial`:
```scala
@ -333,11 +333,11 @@ libraryDependencies += "com.novocode" % "junit-interface" % "0.7" % "test->defau
# Extensions
This page describes adding support for additional testing libraries and defining additional test reporters. You do this by implementing `sbt` interfaces (described below). If you are the author of the testing framework, you can depend on the test inferface as a provided dependency. Alternatively, anyone can provide support for a test framework by implementing the interfaces in a separate project and packaging the project as an sbt [[Plugin|Plugins]].
This page describes adding support for additional testing libraries and defining additional test reporters. You do this by implementing `sbt` interfaces (described below). If you are the author of the testing framework, you can depend on the test interface as a provided dependency. Alternatively, anyone can provide support for a test framework by implementing the interfaces in a separate project and packaging the project as an sbt [[Plugin|Plugins]].
## Custom Test Framework
`sbt` contains built-in support for the three main Scala testing libraries (specs 1 and 2, ScalaTest, and ScalaCheck). To add support for a differrent framework, implement the [uniform test interface].
`sbt` contains built-in support for the three main Scala testing libraries (specs 1 and 2, ScalaTest, and ScalaCheck). To add support for a different framework, implement the [uniform test interface].
## Custom Test Reporters