summaryrefslogtreecommitdiffstats
path: root/uitest
diff options
context:
space:
mode:
Diffstat (limited to 'uitest')
-rw-r--r--uitest/src/com/vaadin/tests/application/HelloWorld.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/application/HelloWorld.java b/uitest/src/com/vaadin/tests/application/HelloWorld.java
new file mode 100644
index 0000000000..c46ef7fc9f
--- /dev/null
+++ b/uitest/src/com/vaadin/tests/application/HelloWorld.java
@@ -0,0 +1,17 @@
+package com.vaadin.tests.application;
+
+import com.vaadin.server.WrappedRequest;
+import com.vaadin.ui.UI;
+
+/**
+ * A simple application to simplify doing quick testing of features when a full
+ * test case is not needed
+ */
+public class HelloWorld extends UI {
+
+ @Override
+ protected void init(WrappedRequest request) {
+
+ // Type your code here...
+ }
+}