moved non-working test to disabled mode

This commit is contained in:
Martin Lippert
2024-10-24 19:55:52 +02:00
parent e32d37a125
commit 54df530c0d

View File

@@ -26,6 +26,7 @@ import org.eclipse.lsp4j.CompletionItem;
import org.eclipse.lsp4j.TextDocumentIdentifier;
import org.gradle.internal.impldep.com.google.common.collect.ImmutableList;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.beans.factory.annotation.Autowired;
@@ -295,18 +296,18 @@ public class ValueCompletionTest {
}
// The parser removes the (spring.) piece from the AST in this case, so there is no way
// to clearly identify this case
//
// @Test
// void testComplexPrefixCompletionParamNameCursorRightAfterDot() throws Exception {
// prepareCase("@Value(\"onField\")", "@Value(spring.<*>)");
// prepareDefaultIndexData();
//
// assertPropertyCompletions(
// "@Value(\"${spring.prop1}\"<*>)");
//
// assertClasspathCompletions();
// }
// to clearly identify this case
@Test
@Disabled
void testComplexPrefixCompletionParamNameCursorRightAfterDot() throws Exception {
prepareCase("@Value(\"onField\")", "@Value(spring.<*>)");
prepareDefaultIndexData();
assertPropertyCompletions(
"@Value(\"${spring.prop1}\"<*>)");
assertClasspathCompletions();
}
@Test
void testComplexPrefixCompletion() throws Exception {