First thing is to add the ScalaTest dependency to your SBT project. In <project_root>/project/<CLASS_THAT_EXTENDS_DEFAULTPROJECTINFO>.scala you will need to add the line:
val scalatest = "org.scalatest" % "scalatest" % "1.3"
This adds the ScalaTest dependency to your project. ScalaTest 1.3 will work fine with Scala 2.8.1.
Then create a test class like so in <project_root>/src/test/scala:
class Foo{
def addOne(i: Int): Int = {
i + 1
}
}
import org.scalatest.Spec
class Test extends Spec {
describe("Add one test") {
it("Should be two") {
expect(2) { new Foo().addOne(1) }
}
}
}
First run 'sbt update' so that sbt will update your repo with the new ScalaTest dependency.
With this you should be able to run 'sbt test' or simply 'test' in the SBT console and it will run the test.