autopopup completion in javadoc local reference (IDEA-131899)

This commit is contained in:
peter
2014-12-23 18:25:17 +01:00
parent d9c547d6e9
commit 3ad506044f
2 changed files with 20 additions and 3 deletions
@@ -259,6 +259,19 @@ class JavaAutoPopupTest extends CompletionAutoPopupTestCase {
assert lookup
}
public void "test popup in javadoc local reference"() {
myFixture.configureByText("a.java", """
/**
* {@link #<caret>}
*/
class Foo {
void foo() {}
}
""")
type 'f'
assert lookup
}
public void "test autopopup in javadoc tag name"() {
myFixture.configureByText("a.java", """
/**