Files
spring-boot-rest/testing-modules/groovy-spock/src/test/groovy/extensions/RestoreSystemPropertiesTest.groovy
2019-03-30 00:35:26 +01:00

19 lines
394 B
Groovy

package extensions
import spock.lang.Specification
import spock.util.environment.RestoreSystemProperties
class RestoreSystemPropertiesTest extends Specification {
@RestoreSystemProperties
def 'all environment variables will be saved before execution and restored after tests'() {
given:
System.setProperty('os.name', 'Mac OS')
expect:
true
}
}