Executable software specification tool that specifies behaviour both at the class and application level using Scala.
I have simple specification with several cases in it: class MySpec extends Specification { "Something" should { "case 1" in { ... } "case 2" in { ... } } } Now …
scala testing specs2In TestNg and Java, we can run multiple test cases using DataProvider, and this runs as separate tests, meaning execution …
scala scalatest specs2I've noticed that SBT is running my specs2 tests in parallel. This seems good, except one of my tests involves …
scala sbt specs2If you have 2 tests defined in your SBT project: class Spec1 extends Specification { def is = "Tests for specification 1" ^ p ^ "Test …
scala specs2I am trying to test some db dependent stuff with specs2 in scala. The goal is to test for "db …
scala skip specs2I have an IntelliJ IDEA project in Scala and started adding org.specs2 tests. I am having trouble finding out …
scala intellij-idea specs2