templates.testing.Generic.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of base Show documentation
Show all versions of base Show documentation
A profile for other profiles to extend from
The newest version!
@artifact.package@
import org.grails.testing.GrailsUnitTest
import spock.lang.Specification
class @artifact.name@Spec extends Specification implements GrailsUnitTest {
def setup() {
}
def cleanup() {
}
void "test something"() {
expect:"fix me"
true == false
}
}