added additional test case

This commit is contained in:
Martin Lippert
2024-11-15 19:14:51 +01:00
parent 0b90be19a4
commit 48fc472f67

View File

@@ -128,6 +128,11 @@ public class DependsOnCompletionProviderTest {
assertCompletions("@DependsOn(\"<*>\")", 2, "@DependsOn(\"bean1<*>\")");
}
@Test
public void testDependsOnCompletionWithQuotesWithAttributeName() throws Exception {
assertCompletions("@DependsOn(value=\"<*>\")", 2, "@DependsOn(value=\"bean1<*>\")");
}
// TODO: not yet working, needs more groundwork due to the parser skipping these non-valid parts of the AST
// @Test
// public void testDependsOnCompletionOpeningQuoteOnlyWithoutPrefix() throws Exception {