Skip to content

Commit

Permalink
[TEST] Extend functional testing by new gradle version. (#30)
Browse files Browse the repository at this point in the history
New versios up to 6.7.
  • Loading branch information
mmalohlava authored Nov 16, 2020
1 parent ab7cf90 commit cc9e65e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ sourceSets {
}

task funcTest(type: Test) {
description = "Functional tests."
group = "verification"
testClassesDirs = sourceSets.funcTest.output.classesDirs
classpath = sourceSets.funcTest.runtimeClasspath
}
Expand Down
12 changes: 10 additions & 2 deletions src/funcTest/groovy/cz.malohlava/VisTegPluginFuncTest.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,14 @@ class VisTegPluginFuncTest extends Specification {
actOutput == expOutput

where:
gradleVersion << ['6.0.1', '6.1.1', '6.4']
gradleVersion << [
'6.0.1',
'6.1.1',
'6.2.1',
'6.3',
'6.4', '6.4.1',
'6.5', '6.5.1',
'6.6', '6.6.1',
'6.7']
}
}
}

0 comments on commit cc9e65e

Please sign in to comment.