diff options
author | Jonatan Kronqvist <jonatan@vaadin.com> | 2014-04-08 15:02:58 +0300 |
---|---|---|
committer | Jonatan Kronqvist <jonatan@vaadin.com> | 2014-04-14 11:43:18 +0300 |
commit | d2e24feb09ccba7f3a2f253687488774af2bc340 (patch) | |
tree | f66161d98c5c1638741569c45712a6f06e7fd756 /uitest/src/com/vaadin/tests/components/ui/UIRefreshTest.java | |
parent | 51c2e93172b0132ead54573c74117efac29c1cec (diff) | |
download | vaadin-framework-d2e24feb09ccba7f3a2f253687488774af2bc340.tar.gz vaadin-framework-d2e24feb09ccba7f3a2f253687488774af2bc340.zip |
Update some APIs based on the 7.2 API review comments
* NotificationConfiguration "helpers" removed from Notification
* NotificationConfiguration methods accept Type instead of style (String)
* Tab.setIconAltText -> Tab.setIconAlternateText
* Remove the two new TabSheet.addTab() methods
* UI.reinit() -> UI.refresh()
Change-Id: I97488e7c6de8cfacc591450d69c821b2973b8707
Diffstat (limited to 'uitest/src/com/vaadin/tests/components/ui/UIRefreshTest.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/ui/UIRefreshTest.java | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/components/ui/UIRefreshTest.java b/uitest/src/com/vaadin/tests/components/ui/UIRefreshTest.java new file mode 100644 index 0000000000..974c4bfe5a --- /dev/null +++ b/uitest/src/com/vaadin/tests/components/ui/UIRefreshTest.java @@ -0,0 +1,39 @@ +/* + * Copyright 2000-2013 Vaadin Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ + +package com.vaadin.tests.components.ui; + +import org.junit.Assert; +import org.junit.Test; + +import com.vaadin.testbench.By; +import com.vaadin.tests.tb3.MultiBrowserTest; + +public class UIRefreshTest extends MultiBrowserTest { + + @Test + public void testUIRefresh() { + openTestURL(); + Assert.assertFalse(reinitLabelExists()); + // Reload the page; UI.refresh should be invoked + openTestURL(); + Assert.assertTrue(reinitLabelExists()); + } + + private boolean reinitLabelExists() { + return !getDriver().findElements(By.id(UIRefresh.REINIT_ID)).isEmpty(); + } +} |