aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests/push/BasicPush.java
diff options
context:
space:
mode:
authorJohn Ahlroos <john@vaadin.com>2013-04-17 11:46:19 +0300
committerJohn Ahlroos <john@vaadin.com>2013-04-17 14:46:21 +0300
commit0f75f202d333ac507fb3e5efb8e9bd4d4719e098 (patch)
treebd19061fbde6c5cf665b0bd4fcefd1c78567800d /uitest/src/com/vaadin/tests/push/BasicPush.java
parent1c4adacdc2c59a4dd33633806902cb6224141954 (diff)
downloadvaadin-framework-0f75f202d333ac507fb3e5efb8e9bd4d4719e098.tar.gz
vaadin-framework-0f75f202d333ac507fb3e5efb8e9bd4d4719e098.zip
Added test for testing push with different transports #11494
Change-Id: I0296bdee1925ba93ca7e4e65c68215e025d072f6
Diffstat (limited to 'uitest/src/com/vaadin/tests/push/BasicPush.java')
-rw-r--r--uitest/src/com/vaadin/tests/push/BasicPush.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/push/BasicPush.java b/uitest/src/com/vaadin/tests/push/BasicPush.java
index 17d107bb8c..43f8236999 100644
--- a/uitest/src/com/vaadin/tests/push/BasicPush.java
+++ b/uitest/src/com/vaadin/tests/push/BasicPush.java
@@ -4,14 +4,17 @@ import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;
+import com.vaadin.annotations.Widgetset;
import com.vaadin.data.util.ObjectProperty;
import com.vaadin.server.VaadinRequest;
import com.vaadin.shared.ui.label.ContentMode;
import com.vaadin.tests.components.AbstractTestUI;
+import com.vaadin.tests.widgetset.TestingWidgetSet;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.Label;
+@Widgetset(TestingWidgetSet.NAME)
public class BasicPush extends AbstractTestUI {
private ObjectProperty<Integer> counter = new ObjectProperty<Integer>(0);