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

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

package org.grails.testing.spock

import grails.testing.web.UrlMappingsUnitTest
import groovy.transform.CompileStatic
import org.spockframework.runtime.extension.IMethodInterceptor
import org.spockframework.runtime.extension.IMethodInvocation

@CompileStatic
class UrlMappingSetupSpecInterceptor implements IMethodInterceptor {

    @Override
    void intercept(IMethodInvocation invocation) throws Throwable {
        ((UrlMappingsUnitTest)invocation.instance).configuredMockedControllers()
        invocation.proceed()
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy