Add support for java-junit

This commit is contained in:
Michal Dorner 2021-03-07 22:06:12 +01:00
parent 4129c2a0bf
commit 16adfe9b7e
No known key found for this signature in database
GPG key ID: 9EEE04B48DA36786
16 changed files with 14390 additions and 5 deletions

View file

@ -17,6 +17,7 @@ This [Github Action](https://github.com/features/actions) displays test results
- Dart / [test](https://pub.dev/packages/test)
- Flutter / [test](https://pub.dev/packages/test)
- JavaScript / [JEST](https://jestjs.io/)
- Java / [jUnit](https://junit.org/)
For more information see [Supported formats](#supported-formats) section.
@ -122,6 +123,7 @@ jobs:
# dart-json
# dotnet-trx
# flutter-json
# java-junit
# jest-junit
reporter: ''
@ -233,6 +235,15 @@ For more information see:
</details>
<details>
<summary>java-junit (Experimental)</summary>
Support for [jUnit](https://junit.org/) XML is experimental - should work but it was not extensively tested.
To have code annotations working properly it's required your directory structure matches package name.
This is due to the fact Java stacktraces doesn't contains full path to the source file.
Some heuristic was necessary to figure out mapping between line in stack trace and actual source file.
</details>
<details>
<summary>jest-junit</summary>