aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/tests/components/checkbox/CheckboxCaptionWrapping.java
diff options
context:
space:
mode:
authorArtur Signell <artur.signell@itmill.com>2009-10-27 07:57:12 +0000
committerArtur Signell <artur.signell@itmill.com>2009-10-27 07:57:12 +0000
commit6a3c715dae922edd723c9423b4308d5d7948b74e (patch)
tree46a007274681a9803afccf135ace5554f3e01e3a /src/com/vaadin/tests/components/checkbox/CheckboxCaptionWrapping.java
parent931d75fef69deb9b738fad97001cf5621de9f43e (diff)
downloadvaadin-framework-6a3c715dae922edd723c9423b4308d5d7948b74e.tar.gz
vaadin-framework-6a3c715dae922edd723c9423b4308d5d7948b74e.zip
Split demo and tests files to own source folders, for #3298
svn changeset:9390/svn branch:6.2
Diffstat (limited to 'src/com/vaadin/tests/components/checkbox/CheckboxCaptionWrapping.java')
-rw-r--r--src/com/vaadin/tests/components/checkbox/CheckboxCaptionWrapping.java39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/com/vaadin/tests/components/checkbox/CheckboxCaptionWrapping.java b/src/com/vaadin/tests/components/checkbox/CheckboxCaptionWrapping.java
deleted file mode 100644
index 540af083c4..0000000000
--- a/src/com/vaadin/tests/components/checkbox/CheckboxCaptionWrapping.java
+++ /dev/null
@@ -1,39 +0,0 @@
-package com.vaadin.tests.components.checkbox;
-
-import com.vaadin.tests.components.TestBase;
-import com.vaadin.ui.CheckBox;
-import com.vaadin.ui.Label;
-import com.vaadin.ui.VerticalLayout;
-
-public class CheckboxCaptionWrapping extends TestBase {
-
- @Override
- protected String getDescription() {
- return "The checkbox caption consists of 10 words which should all be shown. There should be no extra white space between the checkbox caption and the label below it.";
- }
-
- @Override
- protected Integer getTicketNumber() {
- return 3263;
- }
-
- @Override
- protected void setup() {
- setTheme("tests-tickets");
- VerticalLayout mainLayout = new VerticalLayout();
- CheckBox cb = new CheckBox(
- "Checkbox with some Incididunt ut labore et dolore magna aliqua.");
- cb.setStyleName("wrap");
- cb.setWidth("100%");
- mainLayout.setStyleName("borders");
- mainLayout.setWidth("300px");
- mainLayout.addComponent(cb);
- mainLayout.addComponent(new Label(
- "Lorem ipsum dolor sit amet, consectetur adipisicing"
- + " elit, sed do eiusmod tempor."));
-
- addComponent(mainLayout);
-
- }
-
-}