As per the title, I'm wondering if it's possible to provide "assumptions" to Scalatest when defining a particular test case. Assumptions in this context would be preconditions for a test, such that if the assumption evaluated to false, the test would be skipped rather than executed (and handled accordingly by the runners).

In this particular case, I'm thinking about dependencies between tests - so there might be a basic test that validates whether a method returns anything at all, followed by later tests that drill into the specifics of the response. If the former test fails, I'd rather have the latter test marked as "not runnable" in some way, rather than have them fail as well.

That said I can imagine using this in future to define some unconnected preconditions (such as the hard drive must have at least 20MB of space free), so if there's a general way of skippin a test at runtime (as opposed to using ignore or pending) I'd prefer to hear that.

Specialised syntax is welcome, though if I have to manually throw a certain kind of exception that's OK too.

link|improve this question

How do you want the test to be reported? As Ignored, Pending, Success, Failure? – Jens Schauder Aug 17 '11 at 18:29
feedback

1 Answer

up vote 1 down vote accepted

Scalacheck, which is often used in combination with scalatest, can do it:

import org.scalacheck._

object XSpecifictaion extends Properties ("X") { 

    property ("sample (a - b)") = Prop.forAll { (a: Int, b: Int) =>  
      (a < b || (a - b >= 0)) }
}

! (a < b) is your assumption, and (a - b >= 0) the real test; you perform the latter only, if the assumption is true, so you negate your assumption and combine it with a shortcut-OR.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.