Skip to content

Latest commit

 

History

History
285 lines (205 loc) · 14.1 KB

CHANGELOG.md

File metadata and controls

285 lines (205 loc) · 14.1 KB

Change Log

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.

0.21.0

Added

  • Support Collapse All button in Test Explorer. PR#848
  • Support modular test projects. #807

Removed

  • The setting java.test.forceBuildBeforeLaunchTest is removed, please use java.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

Fixed

0.20.0

Added

  • 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

Changed

  • 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

Fixed

0.19.0 - 2019-08-12

Added

  • Support JUnit 5 meta-annotations. #737
  • Support JUnit 5 @TestTemplate. PR#763

Changed

  • Add redhat.java into the extension dependency list. PR#760

Fixed

0.18.2 - 2019-07-23

Fixed

0.18.1 - 2019-06-28

Added

  • Support customizing the visibility of Run Test and Debug Test CodeLens through setting: java.test.editor.enableShortcuts. #374

Fixed

0.18.0 - 2019-06-11

Added

  • Support automatically show the test report after execution. #673
  • Support JUnit 5 @Nested annotation. #685

Fixed

0.17.0 - 2019-05-22

Added

  • Support Junit 5 TestFactory annotation. #644

Changed

  • Automatically add "--enable-preview" to vmargs when necessary. #669

Fixed

0.16.0 - 2019-04-10

Added

  • Add a new command Java: Migrate Deprecated 'launch.test.json' to help migrate the launch.test.json files. PR#664

Removed

  • Stop supporting launch.test.json. #650

Fixed

  • Encoding issue for the Test Runner. PR#662
  • Can resolve the classpath of the invisible project. #348

0.15.1 - 2019-03-19

Fixed

0.15.0 - 2019-03-11

Added

  • Support JUnit 4 @RunWith annotation. #272
  • Support JUnit 4 @Theory annotation. #628
  • Support JUnit 5 @RepeatedTest annotation. #594

Fixed

0.14.1 - 2019-02-19

Added

  • Support ${workspaceFolder} in 'vmargs', 'args' and the value of each entry in 'env' in the test configurations. #602

Fixed

  • 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

0.14.0 - 2019-01-21

Added

  • Add the log level setting. #555
  • Navigate to the source code from the test explorer. #558

Changed

  • Redesign the user experience of running tests with configurations. More details #524

Fixed

  • 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

0.13.0 - 2018-12-27

Added

  • Add Chinese language support. #437

Changed

  • 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

Fixed

  • 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)

0.12.0 - 2018-12-10

Added

  • 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

Changed

  • Improve the test report page. (#397, #486, #489)
  • Change the foreground color of the status bar items. #467

Fixed

  • Fix the bug that test runners will run forever. #482

0.11.1 - 2018-11-26

Added

  • Add JUnit 5's @DisplayName support in test explorer. (Thanks for @BaerMitUmlaut)

Fixed

  • "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

0.11.0 - 2018-11-09

Added

  • Add TestNG support.

Changed

  • Test explorer change to lazy-load mechanism.
  • Always resolve the classpath before running test jobs - no need to trigger Refresh Classpath anymore.

0.10.0 - 2018-10-10

Changed

  • Sort packages alphabetically in Test Explorer. #310
  • Get JAVA_HOME location through calling the API exposed by the Java Language Server. #319

Fixed

  • Fix a bug that code lenses are not in the correct place. #36

0.9.0 - 2018-09-20

Changed

  • Test explorer will always show in the Activity Bar after the extension is activated. #271

Fixed

  • Fix a bug that Java Test Runner will interfere with Java language server. #260
  • Fix 'command not found error' when triggering commands. #289

0.8.0 - 2018-08-08

Changed

  • Refine the logic to consume test output for JUnit test runner.

Fixed

  • 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.

0.7.1 - 2018-07-11

Fixed

  • 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

0.7.0 - 2018-06-26

Added

  • Support configuring environment variables in test configuration.

Changed

  • 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.

Fixed

  • Fix bug #205 and #198. Update classpath when user updates build files.
  • Fix bug #216.

0.6.0 - 2018-04-27

Added

  • 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 command Run Test.

Changed

  • 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 and Debug with Config codelens for simplicity. Still, you can invoke the command from test explorer.
  • Renamed the test configuration file from test-launch.json to launch.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.

0.5.0 - 2018-03-29

Added

  • 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.

0.4.0 - 2018-03-07

Added

  • Support basic feature of JUnit5

Fixed

0.3.0 - 2018-02-11

Added

  • 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.

Fixed

  • Fix bug #83
  • Fix bug #86
  • Fix bug #90
  • Fix bug that test explorer would disappear when opening test report.

0.2.0 - 2018-01-05

Added

  • 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.

Changed

  • Make test report more user friendly. No need to save test report any more

Fixed

0.1.0 - 2017-12-01

Added

  • Support JUnit (v4.8.0+) test cases
  • Run test cases
  • Debug test cases
  • View test logs