vscode-java-test icon indicating copy to clipboard operation
vscode-java-test copied to clipboard

Run and debug Java test cases in Visual Studio Code.

Results 113 vscode-java-test issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/14052197/165247941-a641d9f8-ae1a-47c0-9e62-a5bf10b442b8.png) The highlighting two stacks don't provide any valid info for diagnose, they can be hidden as well.

enhancement

Especially when applying text edits: ![a](https://user-images.githubusercontent.com/6193897/161175968-00b0ca74-9c0b-4e79-bda3-97b204efa3f6.gif)

bug
upstream

``` java.lang.NullPointerException: Cannot invoke "org.eclipse.jdt.core.dom.ASTNode.getParent()" because "node" is null at org.eclipse.jdt.internal.corext.dom.ASTNodes.getParent(ASTNodes.java:2491) at org.eclipse.jdt.internal.corext.refactoring.structure.ASTNodeSearchUtil.getTypeDeclarationNode(ASTNodeSearchUtil.java:182) at com.microsoft.java.test.plugin.util.TestSearchUtils.findTestTypesAndMethods(TestSearchUtils.java:349) at com.microsoft.java.test.plugin.handler.TestDelegateCommandHandler.executeCommand(TestDelegateCommandHandler.java:60) at org.eclipse.jdt.ls.core.internal.handlers.WorkspaceExecuteCommandHandler$1.run(WorkspaceExecuteCommandHandler.java:215) ```

bug

``` java.lang.NullPointerException: Cannot read the array length because "this.fields" is null at org.eclipse.jdt.internal.compiler.lookup.BinaryTypeBinding.getField(BinaryTypeBinding.java:1426) at org.eclipse.jdt.internal.compiler.lookup.AnnotationBinding.buildTargetAnnotation(AnnotationBinding.java:179) at org.eclipse.jdt.internal.compiler.lookup.AnnotationBinding.addStandardAnnotations(AnnotationBinding.java:83) at org.eclipse.jdt.internal.compiler.lookup.BinaryTypeBinding.retrieveAnnotations(BinaryTypeBinding.java:1855) at org.eclipse.jdt.internal.compiler.lookup.ReferenceBinding.getAnnotations(ReferenceBinding.java:1067) at org.eclipse.jdt.core.dom.TypeBinding.getAnnotations(TypeBinding.java:122) at com.microsoft.java.test.plugin.searcher.JUnit5TestSearcher.matchesNameInAnnotationHierarchy(JUnit5TestSearcher.java:110) at com.microsoft.java.test.plugin.searcher.JUnit5TestSearcher.findAnnotation(JUnit5TestSearcher.java:85) at com.microsoft.java.test.plugin.searcher.JUnit5TestSearcher.isTestMethod(JUnit5TestSearcher.java:69) at...

bug

I noticed that your VS Code extension does not support Live Share, so basically the guest cannot see host's tests in the test explorer window. When using Live Share with...

enhancement

I would like to request a feature/fix for the empty context menu for JUnit Tests under a (Custom)TestSuite. At least I would need the "Go to Test" functionality (or a...

enhancement

Steps to reproduce: 1. follow the steps in #1376 to setup test project 2. in **BaseTest.java**, change `assertTrue(false)` to `assertTrue(true)`, and run test class: **BaseTest** 3. in **BaseTest.java**, rollback from...

bug

When I open a Java project without build tool, **Enable Java Tests** feature always help me to setup my test framework, it saves my life. But if there is something...

enhancement
help wanted

Codelens appears for the abstract test class even though it cannot be run directly (IntelliJ redirects you to the classes that inherit from the abstract class instead ...) Codelens does...

bug