]> source.dussan.org Git - vaadin-framework.git/commitdiff
Added a really simple test application for times when you quickly need
authorJohn Ahlroos <john@vaadin.com>
Thu, 6 Sep 2012 10:30:32 +0000 (13:30 +0300)
committerJohn Ahlroos <john@vaadin.com>
Thu, 6 Sep 2012 10:30:46 +0000 (13:30 +0300)
to test some ui features.

uitest/src/com/vaadin/tests/application/HelloWorld.java [new file with mode: 0644]

diff --git a/uitest/src/com/vaadin/tests/application/HelloWorld.java b/uitest/src/com/vaadin/tests/application/HelloWorld.java
new file mode 100644 (file)
index 0000000..c46ef7f
--- /dev/null
@@ -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...
+    }
+}