Package spock.config

Class 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
     }