aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests/push/WebsocketReconnectTest.java
diff options
context:
space:
mode:
authorPatrik Lindström <patrik@vaadin.com>2013-11-06 15:19:50 +0200
committerPatrik Lindström <patrik@vaadin.com>2013-11-06 15:27:36 +0200
commita12b62485dfa9c294e1a483c4b340c2be6a53588 (patch)
tree037c8e12d1c057ece0c3b3edc22573cbbf324449 /uitest/src/com/vaadin/tests/push/WebsocketReconnectTest.java
parent5b8b824942019ab6fc9d70263c22de3644f1f785 (diff)
parent533ddcda271b7226b38c035adf3073062c562653 (diff)
downloadvaadin-framework-a12b62485dfa9c294e1a483c4b340c2be6a53588.tar.gz
vaadin-framework-a12b62485dfa9c294e1a483c4b340c2be6a53588.zip
Merge remote-tracking branch 'origin/7.1' into testbench4
Change-Id: If596876f0a17c471dc7db6b6eea25ed1c3b87fb1
Diffstat (limited to 'uitest/src/com/vaadin/tests/push/WebsocketReconnectTest.java')
-rw-r--r--uitest/src/com/vaadin/tests/push/WebsocketReconnectTest.java36
1 files changed, 36 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/push/WebsocketReconnectTest.java b/uitest/src/com/vaadin/tests/push/WebsocketReconnectTest.java
new file mode 100644
index 0000000000..075a18c0e7
--- /dev/null
+++ b/uitest/src/com/vaadin/tests/push/WebsocketReconnectTest.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 WebsocketReconnectTest extends PushReconnectTest {
+
+ @Override
+ public List<DesiredCapabilities> getBrowsersToTest() {
+ return WebsocketTest.getWebsocketBrowsers();
+ }
+
+ @Override
+ protected Class<?> getUIClass() {
+ return BasicPushWebsocket.class;
+ }
+
+}