forked from junit-team/junit5-samples
-
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.
- Update README.md in root folder. - Integrate new project in `build-all-samples` script. - Use SLF4J NOP Logger implementation. - Add missing licenses. - Clean up Travis CI build script.
- Loading branch information
Showing
10 changed files
with
90 additions
and
30 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
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
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,19 @@ | ||
# junit5-multiple-engines | ||
|
||
The `junit5-multiple-engines` sample demonstrates how to set up a Gradle project | ||
using the JUnit Platform with various [TestEngine][guide-custom-engine] implementations. | ||
|
||
## Provided by junit.org | ||
|
||
* [JUnit Jupiter](https://junit.org/junit5/docs/current/user-guide) | ||
* [JUnit Vintage](https://junit.org/junit5/docs/current/user-guide) | ||
|
||
## 3rd-party test engines | ||
|
||
* [Brahms Maingine](https://github.com/sormuras/brahms) | ||
* [Brahms Single-File Source-Code Engine (JEP 330)](https://github.com/sormuras/brahms) | ||
* [JQwik Test Engine](http://jqwik.net) | ||
* [KotlinTest](https://github.com/kotlintest/kotlintest) | ||
* [Spek](https://github.com/spekframework/spek) | ||
|
||
[guide-custom-engine]: http://junit.org/junit5/docs/current/user-guide/#launcher-api-engines-custom "Plugging in Your Own Test Engine" |
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
10 changes: 10 additions & 0 deletions
10
junit5-multiple-engines/src/test/java/brahms/MaingineTest.java
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
10 changes: 10 additions & 0 deletions
10
junit5-multiple-engines/src/test/java/jqwik/JQwikTest.java
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
10 changes: 10 additions & 0 deletions
10
junit5-multiple-engines/src/test/kotlin/kotlintest/KotlinTest.kt
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
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
12 changes: 11 additions & 1 deletion
12
junit5-multiple-engines/src/test/resources/SingleFileSourceCodeProgram.java
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 |
---|---|---|
@@ -1,7 +1,17 @@ | ||
/* | ||
* Copyright 2015-2018 the original author or authors. | ||
* | ||
* All rights reserved. This program and the accompanying materials are | ||
* made available under the terms of the Eclipse Public License v2.0 which | ||
* accompanies this distribution and is available at | ||
* | ||
* http://www.eclipse.org/legal/epl-v20.html | ||
*/ | ||
|
||
/** @see http://openjdk.java.net/jeps/330 */ | ||
class SingleFileSourceCodeProgram { | ||
|
||
public static void main(String... args) { | ||
System.out.println("http://openjdk.java.net/jeps/330"); | ||
} | ||
} | ||
} |
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