1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 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' } """ } }