Added Specs2 new implementation class name.

This commit is contained in:
cheeseng 2013-06-28 10:44:17 +08:00
parent 86f47bd67d
commit 6d4e51386f
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ object TestFrameworks
val ScalaCheck = new TestFramework("org.scalacheck.ScalaCheckFramework")
val ScalaTest = new TestFramework("org.scalatest.tools.Framework", "org.scalatest.tools.ScalaTestFramework")
val Specs = new TestFramework("org.specs.runner.SpecsFramework")
val Specs2 = new TestFramework("org.specs2.runner.SpecsFramework")
val Specs2 = new TestFramework("org.specs2.runner.Specs2Framework", "org.specs2.runner.SpecsFramework")
val JUnit = new TestFramework("com.novocode.junit.JUnitFramework")
}