summaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests/application/HelloWorld.java
blob: 28115c0cb9b4097699f0386fe7b70636a9a5444c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.vaadin.tests.application;

import com.vaadin.server.VaadinRequest;
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(VaadinRequest request) {

        // Type your code here...
    }
}