aboutsummaryrefslogtreecommitdiff
path: root/src/test/groovy/ch.fhnw.thga.fregeplugin/FregePluginFunctionalTest.groovy
blob: 889f6f01795f3485696c53f2137fba994448b26f (plain)
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'
            }
        """
    }
}