summaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests/tickets/Ticket1925.java
blob: c00404ba988404fefa3b7704dbad016a0f45f2b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.vaadin.tests.tickets;

import com.vaadin.server.LegacyApplication;
import com.vaadin.ui.LegacyWindow;

public class Ticket1925 extends LegacyApplication {

    @Override
    public void init() {
        LegacyWindow mainWindow = new LegacyWindow("Test åäö");
        setMainWindow(mainWindow);

    }

}