aboutsummaryrefslogtreecommitdiffstats
path: root/gradle/junit.gradle
blob: b36b30b414750e577c7592a70867dbd3d8c471fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
dependencies {
	testCompile "org.junit.jupiter:junit-jupiter-api:${junitVersion}"
	testRuntime "org.junit.jupiter:junit-jupiter-engine:${junitVersion}"
	testCompile "org.junit.jupiter:junit-jupiter-params:${junitVersion}"
	testCompile "org.hamcrest:hamcrest:${hamcrestVersion}"
}

test {
	useJUnitPlatform {
		excludeTags 'slow'
	}
}

task slowTest(type: Test) {
	useJUnitPlatform()
}