aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/tests/components/checkbox/CheckboxIcon.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/vaadin/tests/components/checkbox/CheckboxIcon.java')
-rw-r--r--src/com/vaadin/tests/components/checkbox/CheckboxIcon.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/com/vaadin/tests/components/checkbox/CheckboxIcon.java b/src/com/vaadin/tests/components/checkbox/CheckboxIcon.java
deleted file mode 100644
index 1f96a05084..0000000000
--- a/src/com/vaadin/tests/components/checkbox/CheckboxIcon.java
+++ /dev/null
@@ -1,29 +0,0 @@
-package com.vaadin.tests.components.checkbox;
-
-import com.vaadin.terminal.ThemeResource;
-import com.vaadin.tests.components.TestBase;
-import com.vaadin.ui.CheckBox;
-
-public class CheckboxIcon extends TestBase {
-
- @Override
- protected String getDescription() {
- return "The icon of a Checkbox component should have the same cursor as the text and should be clickable. The tooltip should appear when hovering the checkbox, the icon or the caption.";
- }
-
- @Override
- protected Integer getTicketNumber() {
- // TODO Auto-generated method stub
- return null;
- }
-
- @Override
- protected void setup() {
- CheckBox checkbox = new CheckBox("A checkbox");
- checkbox.setIcon(new ThemeResource("../runo/icons/32/calendar.png"));
- checkbox.setDescription("Tooltip for checkbox");
-
- addComponent(checkbox);
- }
-
-}