make the gradle task for texttest slightly easier to use

This commit is contained in:
emily 2022-12-02 08:10:07 +01:00
parent 76e8590d6b
commit ed4c9f9d62

View File

@ -20,7 +20,8 @@ test {
useJUnitPlatform() useJUnitPlatform()
} }
task text(type: JavaExec) { task texttest(type: JavaExec) {
main = "com.gildedrose.TexttestFixture" main = "com.gildedrose.TexttestFixture"
classpath = sourceSets.test.runtimeClasspath classpath = sourceSets.test.runtimeClasspath
args "30"
} }