forked from openfin/java-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjunit.bat
More file actions
9 lines (8 loc) · 811 Bytes
/
junit.bat
File metadata and controls
9 lines (8 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
REM usage: junit.bat runtime_version
REM version defaults to stable
if "%1" == "" (
set RuntimeVersion="stable"
) else (
set RuntimeVersion="%1"
)
java -cp openfin-desktop-java-example-7.1.1-tests.jar;openfin-desktop-java-adapter-7.1.2.jar;TableLayout-20050920.jar;jna-4.5.1.jar;jna-platform-4.5.1.jar;json-20160810.jar;slf4j-api-1.7.5.jar;slf4j-jdk14-1.6.1.jar;junit-4.11.jar;hamcrest-core-1.3.jar;hamcrest-core-1.3.jar;hamcrest-library-1.1.jar;mockito-core-1.9.5.jar;websocket-api-9.3.12.v20160915.jar;websocket-client-9.3.12.v20160915.jar;websocket-common-9.3.12.v20160915.jar;jetty-io-9.3.12.v20160915.jar;jetty-util-9.3.12.v20160915.jar -Djava.util.logging.config.file=logging.properties -Dcom.openfin.test.runtime.version=%RuntimeVersion% org.junit.runner.JUnitCore com.openfin.desktop.AllTests