diff options
author | Leif Åstrand <leif@vaadin.com> | 2015-07-07 21:54:26 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2015-07-07 21:54:26 +0300 |
commit | d7f4b028cd8c222986684013e0599ad98d3d681c (patch) | |
tree | 1e38ff28524b2175e43a58c4fa72e9cc682be371 /uitest | |
parent | 802b6cbd59186d3a0823b316f7523bb4120cb678 (diff) | |
download | vaadin-framework-d7f4b028cd8c222986684013e0599ad98d3d681c.tar.gz vaadin-framework-d7f4b028cd8c222986684013e0599ad98d3d681c.zip |
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
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java b/uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java index edcd07ee89..842fcbb859 100644 --- a/uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java +++ b/uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java @@ -240,6 +240,15 @@ public abstract class AbstractTB3Test extends ParallelTest { * 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 + * {@link #isPush()}. + */ protected void openTestURL(String... parameters) { openTestURL(getUIClass(), parameters); } |