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

io.codearte.accurest.stubrunner.GroovyDslWrapper.groovy Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package io.codearte.accurest.stubrunner

import groovy.transform.CompileStatic
import groovy.transform.PackageScope
import io.codearte.accurest.dsl.GroovyDsl

/**
 * @author Marcin Grzejszczak
 */
@PackageScope
@CompileStatic
class GroovyDslWrapper {

	@Delegate final GroovyDsl groovyDsl

	GroovyDslWrapper(GroovyDsl groovyDsl) {
		this.groovyDsl = groovyDsl
	}

	boolean hasHttpPart() {
		return groovyDsl.request
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy