All notable changes to the "vscode-java-test" extension will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
- The setting
java.test.forceBuildBeforeLaunchTest
is removed, please usejava.debug.settings.forceBuildBeforeLaunch
instead. PR#850 - The setting
java.test.saveAllBeforeLaunchTest
is removed, now the unsaved files will always be saved before launching the tests.PR#861
- Add
java.test.saveAllBeforeLaunchTest
setting to specify whether to automatically save the files before launching the tests. #468 - Add
java.test.forceBuildBeforeLaunchTest
setting to specify whether to automatically build the workspace before launching the tests. #781
- The runner for JUnit 4 is changed to Eclipse JUnit 4 Runner. PR#795
- The title of the Test Explorer is changed to
Java
. PR#796
- Add
redhat.java
into the extension dependency list. PR#760
- Support customizing the visibility of
Run Test
andDebug Test
CodeLens through setting:java.test.editor.enableShortcuts
. #374
- Support automatically show the test report after execution. #673
- Support JUnit 5
@Nested
annotation. #685
- Support Junit 5 TestFactory annotation. #644
- Automatically add "--enable-preview" to vmargs when necessary. #669
- Add a new command
Java: Migrate Deprecated 'launch.test.json'
to help migrate thelaunch.test.json
files. PR#664
- Stop supporting
launch.test.json
. #650
- Support JUnit 4
@RunWith
annotation. #272 - Support JUnit 4
@Theory
annotation. #628 - Support JUnit 5
@RepeatedTest
annotation. #594
- Support ${workspaceFolder} in 'vmargs', 'args' and the value of each entry in 'env' in the test configurations. #602
- SecurityException when running JUnit 5 tests. #477
- Wrong order of arguments passing to Test Runner. #592
- Fail to resolve configurations which contain ${workspaceFolder}. #599
- Report page always goes back to the top after the navigation button is clicked. #606
- Redesign the user experience of running tests with configurations. More details #524
- Fix the bug that test scope is wrong when triggering tests from inner class level. #411
- Fix the bug that tests which contain inner class will be skipped if triggered from the test explorer. #460
- Improve the test output format. #505
- Pack the test report resources into the extension vsix. 550
- Add Chinese language support. #437
- Use webpack to improve the extension startup time. #495
- Change the activation events of the extension. #516
- Change the style of the test report. #517
- Fix the bug that test explorer will keep refreshing when opening a large project. #461
- Fix several bugs that cause the extension fails to run test cases. (#134, #488, #504, #515)
- Add a way to persist test logs into log files. #452
- Add @DisplayName support in the test report for JUnit 5. #446
- Add @ParameterizedTest support for JUnit 5. #107
- Improve the test report page. (#397, #486, #489)
- Change the foreground color of the status bar items. #467
- Fix the bug that test runners will run forever. #482
- Add JUnit 5's @DisplayName support in test explorer. (Thanks for @BaerMitUmlaut)
- "Cannot read property 'indexOf' of undefined" bug when running JUnit 5 tests. #455
- Will run all tests in class if triggering test from method level in test explorer. #441
- Cannot run tests when the project is a multi-module Maven project. #443
- Add TestNG support.
- Test explorer change to lazy-load mechanism.
- Always resolve the classpath before running test jobs - no need to trigger
Refresh Classpath
anymore.
- Sort packages alphabetically in Test Explorer. #310
- Get JAVA_HOME location through calling the API exposed by the Java Language Server. #319
- Fix a bug that code lenses are not in the correct place. #36
- Test explorer will always show in the Activity Bar after the extension is activated. #271
- Fix a bug that Java Test Runner will interfere with Java language server. #260
- Fix 'command not found error' when triggering commands. #289
- Refine the logic to consume test output for JUnit test runner.
- Add project info into
TestSuite
, and run the tests per project to avoid the conflict of classpaths between projects. - Fix the issue that test output would be truncated when it exceeds buffer size.
- Fix the issue that the test runner hangs for some tests.
- Fix classpath resolution issue for the scenario that there are multiple projects in a workspace folder. #176
- Fix bug for default working directory. #229
- Fix bug for test output analyzer. #231
- Add environment variable into test configuration schema.(Thanks @thwfreak for contributing the pull request)
- Fix bug for environment variables in the test configuration. #222
- Support configuring environment variables in test configuration.
- Move test explorer to Test View container(Thanks @sandy081 for contributing to the pull request.)
- Auto refresh test report when files update. And still show previous test report until user reruns the test.
- Support cancelling a test run. Partial test result would be updated.
- Add JSON schema validation for test configuration file.
- Add
default
field in test configuration where user could specify the default config to pick while invoking commandRun Test
.
- Behavior change: after a test run, always show the test report and update test status(might be partial) even when test runner failed.
- Removed
Run With Config
andDebug with Config
codelens for simplicity. Still, you can invoke the command from test explorer. - Renamed the test configuration file from
test-launch.json
tolaunch.test.json
. Original test configuration file won't be removed, but you might need to copy its content to the new one if you have customized config.
-
Support test configuration. You can now configure your test setting through command
java.test.configure
. It supports following configuration:- projectName
- workingDirectory
- args
- vmargs
- preLaunchTask
And you can run/debug with config through codelens or test explorer context menu.
- Support basic feature of JUnit5
- Trigger tests from test explorer. We now support folder/package/class/method levels or you can run all.
- Add command
Java:Open Log
to open log file. - Add setting
java.test.report.position
to specify the position of test report.
- Fix bug #83
- Fix bug #86
- Fix bug #90
- Fix bug that test explorer would disappear when opening test report.
- Add Test explorer, you can view/locate all tests from the explorer.
- Add status bar item to show test status and statistics.
- Add command to show test output window. By default it wouldn't be open while running tests.
- Make test report more user friendly. No need to save test report any more
- Fix bug #34
- Support JUnit (v4.8.0+) test cases
- Run test cases
- Debug test cases
- View test logs