vscode-java-test
vscode-java-test copied to clipboard
Run and debug Java test cases in Visual Studio Code.
### Repro steps: 1. Open a TestNG project 2. Trigger test from a method(1 or 2), shown as the following screenshot  ### Result: The inner class will be run...
If a test case is filtered out by tags from settings, it won't run when I choose to run all the cases. It's ok. However, when I explicit click on...
We write more and more test to be able to run in [parallel](https://junit.org/junit5/docs/current/user-guide/#writing-tests-parallel-execution). This works, but vscode sometimes does display the wrong result-status icon in front of the tests. After...
- Jacoco is used to provide test coverage Support. resolve #387 resolve #1187
fix #1613 This will bump the embedded JUnit 5 to 5.10.0.
In eclipse, when you run a test individually and it depends on another test, it runs that other test first and then runs the test that has the dependency. With...
Does this extension run teardown methods when a user manually stops a test run? I think the answer is no, but thought I'd check if it was meant to first...
# What happened? Run test from the side panel and it display with green icon while the test cannot even build.
Hello when I put some specific args in the java.test.config, they are passed to code under test, except file.encoding, which is always stuck to UTF-8 ``` "java.test.config": { "name": "MonConfig",...
I'm running a test suite of parametrized junit 5 tests. Every **second** time all the tests are running instead of the one selected. 