templates.testing.Controller.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web Show documentation
Show all versions of web Show documentation
A Grace profile for Web applications
@artifact.package@
import grails.testing.web.controllers.ControllerUnitTest
import spock.lang.Specification
class @artifact.name@ControllerSpec extends Specification implements ControllerUnitTest<@artifact.name@Controller> {
def setup() {
}
def cleanup() {
}
void "test something"() {
expect:"fix me"
true == false
}
}