Skip to content

Commit 0954e39

Browse files
committed
GH-1375: added a comment for disabled tests, impossible to implement at the moment
1 parent 88c3287 commit 0954e39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/boot/java/beans/test/QualifierCompletionProviderTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public void testQualifierCompletionWithoutQuotesWithPrefixFromExistingQualifierA
130130
}
131131

132132
@Test
133-
@Disabled // TODO: implement this case
133+
@Disabled // impossible to implement, AST does not contain any nodes at all for the parameter in this case
134134
public void testQualifierCompletionWithoutQuotesWithAttributeNameAtInjecitonPoint() throws Exception {
135135
assertCompletions("@Qualifier(value=<*>)", 4, "@Qualifier(value=\"quali1\"<*>)", PositionInCode.ON_INJECTION_POINT);
136136
}
@@ -146,7 +146,7 @@ public void testQualifierCompletionWithoutQuotesWithAttributeNameAtBeanMethod()
146146
}
147147

148148
@Test
149-
@Disabled // TODO: implement this case
149+
@Disabled // impossible to implement, AST does not contain any nodes at all for the parameter in this case
150150
public void testQualifierCompletionWithoutQuotesWithAttributeNameAndSpacesAtInjecitonPoint() throws Exception {
151151
assertCompletions("@Qualifier(value = <*>)", 4, "@Qualifier(value = \"quali1\"<*>)", PositionInCode.ON_INJECTION_POINT);
152152
}

0 commit comments

Comments
 (0)