templates.testing.Service.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.services.ServiceUnitTest
import spock.lang.Specification
class @artifact.name@ServiceSpec extends Specification implements ServiceUnitTest<@artifact.name@Service>{
def setup() {
}
def cleanup() {
}
void "test something"() {
expect:"fix me"
true == false
}
}