diff options
author | Artur Signell <artur@vaadin.com> | 2013-10-31 12:39:12 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-10-31 15:57:07 +0000 |
commit | 7b120fc196a0517c95a5d8f93c4b72c5b9a72a0b (patch) | |
tree | d10286eadfb04917a1b9d209a86497088d88df09 /uitest/src/com/vaadin/tests/push/StreamingReconnectTest.java | |
parent | 137642958a62dfc081e2b7242318f8ce4ef59304 (diff) | |
download | vaadin-framework-7b120fc196a0517c95a5d8f93c4b72c5b9a72a0b.tar.gz vaadin-framework-7b120fc196a0517c95a5d8f93c4b72c5b9a72a0b.zip |
Tests for validating reconnect works for streaming and websockets (#12868,#12853,#12852)
Change-Id: I0e1e51291e9275a78737ad0e70e63b75ef993a63
Diffstat (limited to 'uitest/src/com/vaadin/tests/push/StreamingReconnectTest.java')
-rwxr-xr-x | uitest/src/com/vaadin/tests/push/StreamingReconnectTest.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/push/StreamingReconnectTest.java b/uitest/src/com/vaadin/tests/push/StreamingReconnectTest.java new file mode 100755 index 0000000000..24dfdd8ba1 --- /dev/null +++ b/uitest/src/com/vaadin/tests/push/StreamingReconnectTest.java @@ -0,0 +1,25 @@ +/* + * 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; + +public class StreamingReconnectTest extends PushReconnectTest { + + @Override + protected Class<?> getUIClass() { + return BasicPushStreaming.class; + } + +} |