diff options
author | Artur Signell <artur@vaadin.com> | 2014-02-22 01:19:12 +0200 |
---|---|---|
committer | Johannes Dahlström <johannesd@vaadin.com> | 2014-02-21 23:48:19 +0000 |
commit | 7782e5d52597f372cdf99cd181956045024aeb21 (patch) | |
tree | 803b9c2d69f6976c49966d868ba77100c8570841 /uitest/src/com/vaadin/tests/push/ReconnectWebsocketTest.java | |
parent | 28a0b2e1cb7157ab43cd940aca5ce3e30caafab5 (diff) | |
download | vaadin-framework-7782e5d52597f372cdf99cd181956045024aeb21.tar.gz vaadin-framework-7782e5d52597f372cdf99cd181956045024aeb21.zip |
Rename to follow same scheme as other push tests
Change-Id: I6ea0626ffb88182120f69e0ca988250248e365e1
Diffstat (limited to 'uitest/src/com/vaadin/tests/push/ReconnectWebsocketTest.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/push/ReconnectWebsocketTest.java | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/push/ReconnectWebsocketTest.java b/uitest/src/com/vaadin/tests/push/ReconnectWebsocketTest.java new file mode 100644 index 0000000000..57fe0a040d --- /dev/null +++ b/uitest/src/com/vaadin/tests/push/ReconnectWebsocketTest.java @@ -0,0 +1,36 @@ +/* + * 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.push; + +import java.util.List; + +import org.openqa.selenium.remote.DesiredCapabilities; + +import com.vaadin.tests.tb3.WebsocketTest; + +public class ReconnectWebsocketTest extends ReconnectTest { + + @Override + public List<DesiredCapabilities> getBrowsersToTest() { + return WebsocketTest.getWebsocketBrowsers(); + } + + @Override + protected Class<?> getUIClass() { + return BasicPushWebsocket.class; + } + +} |