Contributing to Test Runner for Java
Thank you for your interest in contributing to Test Runner for Java!
There are many ways in which you can contribute, beyond writing code. Please read the following document to check how you can get involved.
Questions and Feedback
Have questions or feedback? Feel free to let us know! You can share your thoughts in our Gitter channel:
Reporting Issues
You can report issues whenever:
- Identify a reproducible problem within the extension
- Have a feature request
Looking for an Existing Issue
Before creating a new issue, please do a search to see if the issue or feature request has already been filed.
If you find your issue already exists, make relevant comments and add your reaction:
👍 - upvote👎 - downvote
Writing Good Bug Reports and Feature Requests
In order to let us know better about the issue, please make sure the following items are included with each issue:
- The version of VS Code
- Your operating system
- Reproducible steps
- What you expected to see, versus what you actually saw
- Images, animations, or a link to a video showing the issue occurring
- A code snippet that demonstrates the issue or a link to a code repository the developers can easily pull down to recreate the issue locally
- Errors from the Dev Tools Console (open from the menu: Help > Toggle Developer Tools)
Contributing Fixes
If you are interested in writing code to fix issues, please check the following content to see how to set up the developing environment.
Overview
The extension has three major modules, which are listed as follow:
- The extension client written in TypeScript - UI logic mostly
- The Java Test Plugin written in Java - Inspect the Java project
- The Test Runner written in Java - An executable jar to running the test cases
Setup
- Fork and clone the repository:
git clone git@github.com:Microsoft/vscode-java-test.git cd vscode-java-test- Install the node dependencies:
npm install - Build the Java modules:
npm run build-plugin - Open the directory
vscode-java-testin VS Code - Install the Eclipse PDE Support extension in your VS Code
- Open a Java file and wait until
👍 shows in the right-bottom of the status barNote: Sometimes, if you find the code navigation is not working in the Java code, please reload your VS Code.
Debugging
- Hit
F5(or runLaunch Extensionin the debug viewlet) to launch the extension in debug modeThis will open a new VS Code window as a debug session. Open a Java project folder and let the extension be activated, then you can debug it.
- If you want to debug the Java Test Plugin, run Debug Test Runner Java Plugin (Attach) in the debug viewlet.
Note: If the Java code is changed by you, please run
npm run build-pluginbefore you start debugging, the output jars will be generated in the folderserver/.
Debugging the Test Runner
- The Test Runner is a normal Maven project, you can open it with whatever the development tools you prefer, for example, VS Code
- The Test Runner is an executable jar, the main class is
com.microsoft.java.test.runner.Launcher
Build Your Own Private Build
If you want to build your own private build, run npx @vscode/vsce@latest package after npm run build-plugin.
Check Lint Errors:
Run npm run lint to check lint errors.
Running the test suite
You can run tests using npm run test or by using the Launch Tests Run and Debug configurations in VS Code.
VS Code run and debug configurations
There are two test suite folders for this project. In VS Code you'll see the following run targets:
Launch Tests (maven junit): This will run the tests in the./test/suitefolder.Launch Tests (unmanaged-folder): This will run the tests in the./test/unmanaged-folder-suitefolder.