diff options
Diffstat (limited to 'uitest/src/com/vaadin/tests/themes')
-rw-r--r-- | uitest/src/com/vaadin/tests/themes/ButtonTextOverflow.java | 27 | ||||
-rw-r--r-- | uitest/src/com/vaadin/tests/themes/ButtonTextOverflowTest.java | 25 |
2 files changed, 0 insertions, 52 deletions
diff --git a/uitest/src/com/vaadin/tests/themes/ButtonTextOverflow.java b/uitest/src/com/vaadin/tests/themes/ButtonTextOverflow.java deleted file mode 100644 index 6cf8b7958e..0000000000 --- a/uitest/src/com/vaadin/tests/themes/ButtonTextOverflow.java +++ /dev/null @@ -1,27 +0,0 @@ -package com.vaadin.tests.themes; - -import com.vaadin.server.VaadinRequest; -import com.vaadin.tests.components.AbstractTestUI; -import com.vaadin.ui.Button; - -public class ButtonTextOverflow extends AbstractTestUI { - - @Override - protected void setup(VaadinRequest request) { - Button button = new Button("Button Button Button"); - - button.setWidth("100px"); - - addComponent(button); - } - - @Override - protected String getTestDescription() { - return "Overflowing button caption should be hidden with ellipsis."; - } - - @Override - protected Integer getTicketNumber() { - return 11864; - } -} diff --git a/uitest/src/com/vaadin/tests/themes/ButtonTextOverflowTest.java b/uitest/src/com/vaadin/tests/themes/ButtonTextOverflowTest.java deleted file mode 100644 index e31e98ac6e..0000000000 --- a/uitest/src/com/vaadin/tests/themes/ButtonTextOverflowTest.java +++ /dev/null @@ -1,25 +0,0 @@ -package com.vaadin.tests.themes; - -import java.io.IOException; - -import org.junit.Test; - -import com.vaadin.tests.tb3.MultiBrowserTest; - -public class ButtonTextOverflowTest extends MultiBrowserTest { - - @Test - public void captionOverflowIsHiddenInReindeer() throws IOException { - openTestURL("theme=reindeer"); - - compareScreen("reindeer"); - } - - @Test - public void captionOverflowIsHiddenInValo() throws IOException { - openTestURL("theme=valo"); - - compareScreen("valo"); - } - -}
\ No newline at end of file |