Skip to content

Commit 48fc472

Browse files
committed
added additional test case
1 parent 0b90be1 commit 48fc472

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,11 @@ public void testDependsOnCompletionInsideOfQuotesWithoutPrefix() throws Exceptio
128128
assertCompletions("@DependsOn(\"<*>\")", 2, "@DependsOn(\"bean1<*>\")");
129129
}
130130

131+
@Test
132+
public void testDependsOnCompletionWithQuotesWithAttributeName() throws Exception {
133+
assertCompletions("@DependsOn(value=\"<*>\")", 2, "@DependsOn(value=\"bean1<*>\")");
134+
}
135+
131136
// TODO: not yet working, needs more groundwork due to the parser skipping these non-valid parts of the AST
132137
// @Test
133138
// public void testDependsOnCompletionOpeningQuoteOnlyWithoutPrefix() throws Exception {

0 commit comments

Comments
 (0)