diff options
author | John Ahlroos <john@vaadin.com> | 2012-11-05 14:02:15 +0200 |
---|---|---|
committer | John Ahlroos <john@vaadin.com> | 2012-11-05 14:08:48 +0200 |
commit | 207c76bbeebeaec71f43d1d19fba36e93e6b3351 (patch) | |
tree | bf797e59c7a5a6caca5b532793f43b2fdf91fd69 /uitest | |
parent | d81badda926921ecead349a89222080016fee0e9 (diff) | |
download | vaadin-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.java | 5 |
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; } |