templates.testing.Resource.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api Show documentation
Show all versions of rest-api Show documentation
A profile for REST API applications
@artifact.package@
import grails.testing.gorm.DomainUnitTest
import spock.lang.Specification
class @artifact.name@Spec extends Specification implements DomainUnitTest<@artifact.name@> {
def setup() {
}
def cleanup() {
}
void "test something"() {
expect:"fix me"
true == false
}
}