@@ -44,7 +44,7 @@ __Groovy:__
4444 mockFramework = 'mockito'
4545 generationTimeout = 60000L
4646 codegenLanguage = 'java'
47- mockStrategy = 'package-based '
47+ mockStrategy = 'other-packages '
4848 staticsMocking = 'mock-statics'
4949 forceStaticMocking = 'force'
5050 classesToMockAlways = ['org.slf4j.Logger', 'java.util.Random']
@@ -62,7 +62,7 @@ __Kotlin DSL:__
6262 mockFramework.set(" mockito" )
6363 generationTimeout.set(60000L )
6464 codegenLanguage.set(" java" )
65- mockStrategy.set(" package-based " )
65+ mockStrategy.set(" other-packages " )
6666 staticsMocking.set(" mock-statics" )
6767 forceStaticMocking.set(" force" )
6868 classesToMockAlways.set(listOf (" org.slf4j.Logger" , " java.util.Random" ))
@@ -118,9 +118,9 @@ __Kotlin DSL:__
118118- ` mockStrategy ` &ndash ;
119119 - The mock strategy to be used.
120120 - Can be one of:
121- - ` 'do-not-mock ' ` &ndash ; do not use mock frameworks at all
122- - ` 'package-based ' ` &ndash ; mock all classes outside the current package except system ones _ (by default)_
123- - ` 'all-except-cut ' ` &ndash ; mock all classes outside the class under test except system ones
121+ - ` 'no-mocks ' ` &ndash ; do not use mock frameworks at all
122+ - ` 'other-packages ' ` &ndash ; mock all classes outside the current package except system ones _ (by default)_
123+ - ` 'other-classes ' ` &ndash ; mock all classes outside the class under test except system ones
124124
125125- ` staticsMocking ` &ndash ;
126126 - Use static methods mocking or not.
0 commit comments