Which Scala Testing Tools Should You Use?
tech.gilt.com
Which Scala Testing Tools Should You Use?
1–2 of 2 posts
Re: Which Scala Testing Tools Should You Use?
#2Cucumber-inspired tools suffer from the same problems as cucumber itself, as recently discussed here: at best they repeat what the code already tells you, at worst they encourage business types to micromanage testing. After a bit of experimentation with these tools I went back to traditional JUnit. My tests are now vanilla scala code, which makes them easy to reason about (and debug) when they fail.