aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/main/java/com/vaadin/tests/debug/PreserveCustomDebugSectionOpen.java
blob: bd4ab15dab6b7df59a92a3c3b787475097235b85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.vaadin.tests.debug;

import com.vaadin.annotations.Widgetset;
import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractReindeerTestUI;
import com.vaadin.tests.widgetset.TestingWidgetSet;
import com.vaadin.ui.Label;

@Widgetset(TestingWidgetSet.NAME)
public class PreserveCustomDebugSectionOpen extends AbstractReindeerTestUI {

    @Override
    protected void setup(VaadinRequest request) {
        addComponent(new Label(
                "UI for testing that a custom debug window section remains open after refreshging."));
    }

}