diff options
author | Artur Signell <artur@vaadin.com> | 2014-02-04 23:14:05 +0200 |
---|---|---|
committer | Johannes Dahlström <johannesd@vaadin.com> | 2014-02-10 21:40:30 +0000 |
commit | 6d8b9e5488ad1fd49b66c7a07a20f96fa2781436 (patch) | |
tree | ee75540bcd04a31724dcfdd265bef3ed842279f7 /uitest/src | |
parent | ad49fe31b3e1d04a263b607ba9451a30181a1744 (diff) | |
download | vaadin-framework-6d8b9e5488ad1fd49b66c7a07a20f96fa2781436.tar.gz vaadin-framework-6d8b9e5488ad1fd49b66c7a07a20f96fa2781436.zip |
Servlet test for push with default parameters (#13299)
Ensure push works in default mode for all servers and browsers
Change-Id: I7145839bb081165fd52246fe87c6bb3eae7fe510
Diffstat (limited to 'uitest/src')
-rw-r--r-- | uitest/src/com/vaadin/tests/integration/ServletIntegrationDefaultPushUI.java | 29 | ||||
-rw-r--r-- | uitest/src/com/vaadin/tests/integration/ServletIntegrationDefaultPushUITest.java | 21 |
2 files changed, 50 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/integration/ServletIntegrationDefaultPushUI.java b/uitest/src/com/vaadin/tests/integration/ServletIntegrationDefaultPushUI.java new file mode 100644 index 0000000000..d6def8d69c --- /dev/null +++ b/uitest/src/com/vaadin/tests/integration/ServletIntegrationDefaultPushUI.java @@ -0,0 +1,29 @@ +/* + * 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.integration; + +import com.vaadin.annotations.Push; + +/** + * Server test which uses the default push mechanisms + * + * @since 7.1.12 + * @author Vaadin Ltd + */ +@Push +public class ServletIntegrationDefaultPushUI extends ServletIntegrationUI { + +} diff --git a/uitest/src/com/vaadin/tests/integration/ServletIntegrationDefaultPushUITest.java b/uitest/src/com/vaadin/tests/integration/ServletIntegrationDefaultPushUITest.java new file mode 100644 index 0000000000..5f50cdb95d --- /dev/null +++ b/uitest/src/com/vaadin/tests/integration/ServletIntegrationDefaultPushUITest.java @@ -0,0 +1,21 @@ +/* + * 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.integration; + +public class ServletIntegrationDefaultPushUITest extends + AbstractServletIntegrationTest { + // Uses the test method declared in the super class +}
\ No newline at end of file |