【发布时间】:2021-04-29 12:29:08
【问题描述】:
在 specs2 中,给出以下代码:
import org.specs2.mutable.SpecificationWithJUnit
trait TestSuite extends SpecificationWithJUnit {
...
}
class ConcreteTest extends TestSuite {
// want to skip the whole test suite here
}
如何在测试套件的具体测试实现中跳过整个套件?
【问题讨论】: