diff options
author | John Ahlroos <john@vaadin.com> | 2012-09-06 13:30:32 +0300 |
---|---|---|
committer | John Ahlroos <john@vaadin.com> | 2012-09-06 13:30:46 +0300 |
commit | 55c0dfa0e7a737bab8c2486fb213499e6be88aa4 (patch) | |
tree | 801bf397351408966a2ceeec2f536959bac48f06 /uitest | |
parent | fa6e2d6295aed4a6dfa8f63147abcfdb8f671e85 (diff) | |
download | vaadin-framework-55c0dfa0e7a737bab8c2486fb213499e6be88aa4.tar.gz vaadin-framework-55c0dfa0e7a737bab8c2486fb213499e6be88aa4.zip |
Added a really simple test application for times when you quickly need
to test some ui features.
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/com/vaadin/tests/application/HelloWorld.java | 17 |
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... + } +} |