Browse Source

Improve Eclipse auto-complete experience for openTestURL

Selecting the varags method for auto completion will annoyingly create
suggest passing parameters to the method, which is rarely what you want
to do.

Change-Id: I14a82daffde15839e84da626c77f81b33efec90f
tags/7.6.0.alpha3
Leif Åstrand 9 years ago
parent
commit
d7f4b028cd
1 changed files with 9 additions and 0 deletions
  1. 9
    0
      uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java

+ 9
- 0
uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java View File

@@ -235,6 +235,15 @@ public abstract class AbstractTB3Test extends ParallelTest {
waitUntilRowIsVisible(table, rowToWait);
}

/**
* Opens the given test (defined by {@link #getTestUrl()}, optionally with
* debug window and/or push (depending on {@link #isDebug()} and
* {@link #isPush()}.
*/
protected void openTestURL() {
openTestURL(new String[0]);
}

/**
* Opens the given test (defined by {@link #getTestUrl()}, optionally with
* debug window and/or push (depending on {@link #isDebug()} and

Loading…
Cancel
Save