Java: run text fixture from cli

This commit is contained in:
Nitsan Avni 2022-11-27 16:12:23 +00:00
parent ac8fce7557
commit bd93f794bf
2 changed files with 20 additions and 0 deletions

15
Java/README.md Normal file
View File

@ -0,0 +1,15 @@
# Gilded Rose starting position in Java
## Run the Text Fixture from Command-Line
```
./gradlew -q text
```
### Specify Number of Days
For e.g. 10 days:
```
./gradlew -q text --args 10
```

View File

@ -19,3 +19,8 @@ sourceCompatibility = '1.8'
test {
useJUnitPlatform()
}
task text(type: JavaExec) {
main = "com.gildedrose.TexttestFixture"
classpath = sourceSets.test.runtimeClasspath
}