summaryrefslogtreecommitdiffstats
path: root/uitest
diff options
context:
space:
mode:
authorJohn Ahlroos <john@vaadin.com>2012-11-05 14:02:15 +0200
committerJohn Ahlroos <john@vaadin.com>2012-11-05 14:08:48 +0200
commit207c76bbeebeaec71f43d1d19fba36e93e6b3351 (patch)
treebf797e59c7a5a6caca5b532793f43b2fdf91fd69 /uitest
parentd81badda926921ecead349a89222080016fee0e9 (diff)
downloadvaadin-framework-207c76bbeebeaec71f43d1d19fba36e93e6b3351.tar.gz
vaadin-framework-207c76bbeebeaec71f43d1d19fba36e93e6b3351.zip
Do not include LegacyWindow or LabelDataSource.MockUI in test
Change-Id: I3325d472b98d3311bce222d7d1ffd17898b3194b
Diffstat (limited to 'uitest')
-rw-r--r--uitest/src/com/vaadin/tests/layouts/MovingComponentsWhileOldParentInvisible.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/uitest/src/com/vaadin/tests/layouts/MovingComponentsWhileOldParentInvisible.java b/uitest/src/com/vaadin/tests/layouts/MovingComponentsWhileOldParentInvisible.java
index 0914726b75..0fd143cc2f 100644
--- a/uitest/src/com/vaadin/tests/layouts/MovingComponentsWhileOldParentInvisible.java
+++ b/uitest/src/com/vaadin/tests/layouts/MovingComponentsWhileOldParentInvisible.java
@@ -12,6 +12,8 @@ import com.vaadin.ui.ComponentContainer;
import com.vaadin.ui.CustomComponent;
import com.vaadin.ui.CustomLayout;
import com.vaadin.ui.Label;
+import com.vaadin.ui.LabelDataSource;
+import com.vaadin.ui.LegacyWindow;
import com.vaadin.ui.LoginForm;
import com.vaadin.ui.PopupView;
import com.vaadin.ui.UI;
@@ -45,7 +47,8 @@ public class MovingComponentsWhileOldParentInvisible extends TestBase {
if (cls == LoginForm.class || cls == CustomLayout.class
|| CustomComponent.class.isAssignableFrom(cls)
|| cls == PopupView.class || cls == Window.class
- || cls == UI.class) {
+ || cls == UI.class || cls == LegacyWindow.class
+ || cls == LabelDataSource.MockUI.class) {
// Does not support addComponent
continue;
}