GH-1375: added a comment for disabled tests, impossible to implement at the moment

This commit is contained in:
Martin Lippert
2024-10-11 16:48:05 +02:00
parent 88c328789e
commit 0954e397f6

View File

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