Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Rename to Test Runner for Java #1272

Merged
merged 2 commits into from
Aug 13, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Test explorer will always show in the Activity Bar after the extension is activated. [#271](https://github.com/Microsoft/vscode-java-test/issues/271)

### Fixed
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In changelog, you could mention it "Rename the extension name to "Test Runner for Java"".

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you mean keep the previous change log calling Java Test Runner?

- Fix a bug that Java Test Runner will interfere with Java language server. [#260](https://github.com/Microsoft/vscode-java-test/issues/260)
- Fix a bug that Test Runner for Java will interfere with Java language server. [#260](https://github.com/Microsoft/vscode-java-test/issues/260)
- Fix 'command not found error' when triggering commands. [#289](https://github.com/Microsoft/vscode-java-test/issues/289)

## 0.8.0 - 2018-08-08
Expand Down
12 changes: 6 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing to Java Test Runner
# Contributing to Test Runner for Java

Thank you for your interest in contributing to Java Test Runner!
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.

Expand Down Expand Up @@ -36,7 +36,7 @@ If you are interested in writing code to fix issues, please check the following
The extension has three major modules, which are listed as follow:
- The extension client written in TypeScript - UI logic mostly
- [The Java Test Plugin](https://github.com/Microsoft/vscode-java-test/tree/main/java-extension/com.microsoft.java.test.plugin) written in Java - Inspect the Java project
- [The Java Test Runner](https://github.com/Microsoft/vscode-java-test/tree/main/java-extension/com.microsoft.java.test.runner) written in Java - An executable jar to running the test cases
- [The Test Runner](https://github.com/Microsoft/vscode-java-test/tree/main/java-extension/com.microsoft.java.test.runner) written in Java - An executable jar to running the test cases

### Setup
1. Fork and clone the repository: `git clone git@github.com:Microsoft/vscode-java-test.git`
Expand All @@ -56,9 +56,9 @@ The extension has three major modules, which are listed as follow:

> Note: If the Java code is changed by you, please run `npm run build-plugin` before you start debugging, the output jars will be generated in the folder `server/`.

### Debugging the Java Test Runner
- The Java Test Runner is a normal Maven project, you can open it with whatever the development tools you prefer, for example, VS Code
- The Java Test Runner is an executable jar, the main class is `com.microsoft.java.test.runner.Launcher`
### 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 vsce@latest package` after `npm run build-plugin`.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Java Test Runner
# Test Runner for Java

> Run and debug Java test cases in Visual Studio Code

Expand Down Expand Up @@ -30,7 +30,7 @@ A lightweight extension to run and debug Java test cases in Visual Studio Code.

> Note: JUnit 3 styled tests are not supported in this extension (i.e. extends `junit.framework.TestCase`).

The [Java Test Runner](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-java-test) works with [Language Support for Java by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java) and [Debugger for Java](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-java-debug) to provide the following features:
The [Test Runner for Java](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-java-test) works with [Language Support for Java by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java) and [Debugger for Java](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-java-debug) to provide the following features:

- Run/Debug test cases
- Customize test configurations
Expand Down Expand Up @@ -126,7 +126,7 @@ If you meet any problem when using the extension, please refer to the [FAQ](http

## Contributing and Feedback

If you are interested in providing feedback or contributing directly to the code base, please check the document [Contributing to Java Test Runner](https://github.com/Microsoft/vscode-java-test/blob/main/CONTRIBUTING.md), which covers the following parts:
If you are interested in providing feedback or contributing directly to the code base, please check the document [Contributing to Test Runner for Java](https://github.com/Microsoft/vscode-java-test/blob/main/CONTRIBUTING.md), which covers the following parts:
- [Questions and Feedback](https://github.com/Microsoft/vscode-java-test/blob/main/CONTRIBUTING.md#questions-and-feedback)
- [Reporting Issues](https://github.com/Microsoft/vscode-java-test/blob/main/CONTRIBUTING.md#reporting-issues)
- [Contributing Fixes](https://github.com/Microsoft/vscode-java-test/blob/main/CONTRIBUTING.md#contributing-fixes)
Expand Down
2 changes: 1 addition & 1 deletion java-extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<version>0.31.1</version>
<packaging>pom</packaging>
<properties>
<base.name>Java Test Runner</base.name>
<base.name>Test Runner for Java</base.name>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<tycho-version>1.7.0</tycho-version>
</properties>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vscode-java-test",
"displayName": "Java Test Runner",
"displayName": "Test Runner for Java",
"description": "%description%",
"repository": {
"url": "https://github.com/Microsoft/vscode-java-test"
Expand Down Expand Up @@ -152,7 +152,7 @@
}
],
"configuration": {
"title": "Java Test Runner",
"title": "Test Runner for Java",
"properties": {
"java.test.defaultConfig": {
"type": "string",
Expand Down