Can I have dependencies between scalaTest specs such that if a test fails, all tests dependent on it are skipped?
feedback
|
|
I didn't add that feature of TestNG because I didn't at the time have any compelling use cases to justify it. I have since collected some use cases, and am adding a feature to the next version of ScalaTest to address it. But it won't be dependent tests, just a way to "cancel" a test based on an unmet precondition. In the meantime what you can do is simply use Scala if statements to only register tests if the condition is met, or to register them as ignored if you prefer to see it output. If you are using Spec, it would look something like:
This will only work if the condition will be met for sure at test construction time. If the database for example is supposed to be started up by a beforeAll method, perhaps, then you'd need to do the check inside each test. And in that case you could say it is pending. Something like:
| |||
feedback
|
|
I don't know about a ready made solution. But you can fairly easily write your own Fixtures. See "Composing stackable fixture traits" in the javadoc of the Suite trait Such a fixture could for example replace all test executions after the first one with calls to | |||
|
feedback
|