spock.config
Class RunnerConfiguration
java.lang.Object
spock.config.RunnerConfiguration
public class RunnerConfiguration
- extends Object
Configuration settings for the spec runner.
Example:
import some.pkg.Fast
import some.pkg.IntegrationSpec
runner {
include Fast // could be either an annotation or a (base) class
exclude {
annotation some.pkg.Slow
baseClass IntegrationSpec
}
filterStackTrace true // this is the default
}
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
include
public IncludeExcludeCriteria include
exclude
public IncludeExcludeCriteria exclude
filterStackTrace
public boolean filterStackTrace
optimizeRunOrder
public boolean optimizeRunOrder
RunnerConfiguration
public RunnerConfiguration()