diff options
Diffstat (limited to 'src/test/groovy/ch.fhnw.thga.fregeplugin/FregePluginFunctionalTest.groovy')
-rw-r--r-- | src/test/groovy/ch.fhnw.thga.fregeplugin/FregePluginFunctionalTest.groovy | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/test/groovy/ch.fhnw.thga.fregeplugin/FregePluginFunctionalTest.groovy b/src/test/groovy/ch.fhnw.thga.fregeplugin/FregePluginFunctionalTest.groovy new file mode 100644 index 0000000..889f6f0 --- /dev/null +++ b/src/test/groovy/ch.fhnw.thga.fregeplugin/FregePluginFunctionalTest.groovy @@ -0,0 +1,18 @@ +package ch.fhnw.thga.fregeplugin + +import org.junit.jupiter.api.io.TempDir; +import spock.lang.Specification + +class FregePluginFunctionalTests extends Specification { + @TempDir File testProjectDir + File buildFile + + def setup() { + buildFile = newFile(testProjectDir, 'build.gradle') + buildFile << """ + plugins { + id 'ch.fhnw.thga.frege' + } + """ + } +}
\ No newline at end of file |