Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to the "vscode-java-test" extension will be documented in th
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 0.44.0
## What's Changed
* feat - junit 6 support in https://github.com/microsoft/vscode-java-test/pull/1820
* fix - update build script for xml size limit in https://github.com/microsoft/vscode-java-test/pull/1815

## 0.43.2
## What's Changed
* fix - Update to jacoco 0.8.14 by @fbricon in https://github.com/microsoft/vscode-java-test/pull/1798
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ A lightweight extension to run and debug Java test cases in Visual Studio Code.

- JUnit 4 (v4.8.0+)
- JUnit 5 (v5.1.0+)
- JUnit 6 (v6.0.1+)
- TestNG (v6.9.13.3+)

> Note: JUnit 3 styled tests are not supported in this extension (i.e. extends `junit.framework.TestCase`).
Expand Down Expand Up @@ -106,9 +107,13 @@ There are other VS Code embedded commands for testing, which can be found by sea

There are some other VS Code embedded settings for testing, which can be found by searching `testing` in the Settings view.
## Project Setup
### JUnit 6

Please refer to [Getting Started](https://docs.junit.org/6.0.1/overview.html#overview-getting-started) from the JUnit 6's official document for getting started documentation.

### JUnit 5

Please refer to [Getting Started](https://junit.org/junit5/docs/current/user-guide/#overview-getting-started) from the JUnit 5's official document for getting started documentation.
Please refer to [Getting Started](https://docs.junit.org/5.14.1/overview.html) from the JUnit 5's official document for getting started documentation.

> Note: If your project does not use build tools(Maven/Gradle/...), please make sure [junit-platform-console-standalone.jar](https://search.maven.org/search?q=g:org.junit.platform%20AND%20a:junit-platform-console-standalone) is on your project classpath.

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"repository": {
"url": "https://github.com/Microsoft/vscode-java-test"
},
"version": "0.43.2",
"version": "0.44.0",
"publisher": "vscjava",
"bugs": {
"url": "https://github.com/Microsoft/vscode-java-test/issues"
Expand Down
Loading