-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding a simple JUnit console for testing
Use the basic JUnit console provided in JUnit5 to use as a sample for running Jupiter engines.
- Loading branch information
1 parent
d5cefee
commit 643aa18
Showing
9 changed files
with
19 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
./gradlew :jupiter-sample-console:installDist --quiet | ||
./jupiter-sample-console/build/install/jupiter-sample-console/bin/jupiter-sample-console $* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@echo off | ||
cmd /c gradlew :jupiter-sample-console:installDist --quiet | ||
cmd /c jupiter-sample-console\build\install\jupiter-sample-console\bin\jupiter-sample-console %* |
This file was deleted.
Oops, something went wrong.
39 changes: 0 additions & 39 deletions
39
jupiter-launcher-sample/src/main/java/org/ajoberstar/jupiter/launcher/DiscoveryPrinter.java
This file was deleted.
Oops, something went wrong.
45 changes: 0 additions & 45 deletions
45
jupiter-launcher-sample/src/main/java/org/ajoberstar/jupiter/launcher/ExecutionPrinter.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
plugins { | ||
id 'application' | ||
id 'maven-publish' | ||
} | ||
|
||
mainClassName = 'org.junit.gen5.console.ConsoleRunner' | ||
|
||
dependencies { | ||
compile 'org.junit:junit-console:default' | ||
compile project(':jupiter-engine-clojure.test') | ||
} |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters