Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/daggerok/mixed-kotlin-java-jupiter-tests
My JUnit 5 Jupiter investigation process of problem how to successfully run JUnit 5 Jupiter and JUnit 4 Vintage tests together in mixed Java + Kotlin maven projects
https://github.com/daggerok/mixed-kotlin-java-jupiter-tests
java junit junit-5 junit-jupiter junit-vintage junit4 junit5 kotlin kotlin-maven-plugin maven maven-compiler-plugin maven-surefire-plugin
Last synced: 5 days ago
JSON representation
My JUnit 5 Jupiter investigation process of problem how to successfully run JUnit 5 Jupiter and JUnit 4 Vintage tests together in mixed Java + Kotlin maven projects
- Host: GitHub
- URL: https://github.com/daggerok/mixed-kotlin-java-jupiter-tests
- Owner: daggerok
- License: mit
- Created: 2019-05-25T18:28:23.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-06-20T22:42:53.000Z (over 2 years ago)
- Last Synced: 2023-04-05T03:19:11.230Z (over 1 year ago)
- Topics: java, junit, junit-5, junit-jupiter, junit-vintage, junit4, junit5, kotlin, kotlin-maven-plugin, maven, maven-compiler-plugin, maven-surefire-plugin
- Language: Java
- Homepage:
- Size: 61.5 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mixed-kotlin-java-jupiter-tests [![Build Status](https://travis-ci.org/daggerok/mixed-kotlin-java-jupiter-tests.svg?branch=master)](https://travis-ci.org/daggerok/mixed-kotlin-java-jupiter-tests)
My JUnit 5 Jupiter investigation process of problem how to successfully run JUnit 5 Jupiter and JUnit 4 Vintage tests together in mixed Java + Kotlin maven multi-module projects```bash
./mvnw test
````+` means: tests are going to be executed
`-` means: for some reasons test are not going to be executed with provided configuration...```
src/
test/
java/
**/*JUnit4VintageJavaTest.java +
**/*JUnit4VintageKotlinTest.kt +
**/*JUnit5JupiterJavaTest.java +
**/*JUnit5JupiterKotlinTest.kt +
kotlin/
**/*JUnit4VintageJavaTest.java -
**/*JUnit4VintageKotlinTest.kt +
**/*JUnit5JupiterJavaTest.java -
**/*JUnit5JupiterKotlinTest.kt +
```