All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.grails.testing.spock.WebCleanupSpecInterceptor.groovy Maven / Gradle / Ivy

The newest version!
package org.grails.testing.spock

import groovy.transform.CompileStatic
import org.grails.web.converters.configuration.ConvertersConfigurationHolder
import org.spockframework.runtime.extension.IMethodInterceptor
import org.spockframework.runtime.extension.IMethodInvocation

@CompileStatic
class WebCleanupSpecInterceptor implements IMethodInterceptor {

    @Override
    void intercept(IMethodInvocation invocation) throws Throwable {
        ConvertersConfigurationHolder.clear()
        invocation.proceed()
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy