Skip to content

Commit 3a6ae08

Browse files
committed
add gui testing scripts
1 parent 04694ae commit 3a6ae08

4 files changed

Lines changed: 14 additions & 2 deletions

File tree

test-gui.bat

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@echo off
2+
3+
java -jar app/build/libs/app.jar
4+
5+
@pause

test-gui.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/sh
2+
3+
cd app
4+
gradle build
5+
java -jar build/libs/app.jar

test.bat

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
@echo off
22

3-
java -jar app/build/libs/app.jar
3+
java -jar app/build/libs/app.jar --console
4+
5+
@pause

test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
cd app
44
gradle build
5-
java -jar build/libs/app.jar
5+
java -jar build/libs/app.jar --console

0 commit comments

Comments
 (0)