In specs2, given the following code:
import org.specs2.mutable.SpecificationWithJUnit
trait TestSuite extends SpecificationWithJUnit {
...
}
class ConcreteTest extends TestSuite {
// want to skip the whole test suite here
}
How in concrete test implementation of a test suite, to skip the whole suite?
Found it:
Reference: ArgumentsShortcuts
This trait is transitively inherited to
SpecificationWithJunitvia the path:SpecificationWithJunit -> Specification -> SpecificationLike -> SpecificationCreation -> ArgumentsShortcuts