From f3d085304bad105e65ce0c77f25ae59161fd8776 Mon Sep 17 00:00:00 2001 From: Thibault Gagnaux Date: Mon, 28 Jun 2021 11:10:10 +0200 Subject: Inits branch with a simple groovy test --- .../FregePluginFunctionalTest.groovy | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/test/groovy/ch.fhnw.thga.fregeplugin/FregePluginFunctionalTest.groovy (limited to 'src/test/groovy/ch.fhnw.thga.fregeplugin') 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 -- cgit