Skip to content

Commit

Permalink
added additional test case
Browse files Browse the repository at this point in the history
  • Loading branch information
martinlippert committed Nov 15, 2024
1 parent 0b90be1 commit 48fc472
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,11 @@ public void testDependsOnCompletionInsideOfQuotesWithoutPrefix() throws Exceptio
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 {
Expand Down

0 comments on commit 48fc472

Please sign in to comment.