Package com.vaadin.tests.components.window

Source Code of com.vaadin.tests.components.window.HugeWindowShouldBeClosable

package com.vaadin.tests.components.window;

import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.Window;

public class HugeWindowShouldBeClosable extends TestBase {

    @Override
    protected void setup() {
        Window w = new Window("Hueg");
        w.setWidth("2000px");
        w.setHeight("2000px");
        w.setPositionY(500);
        getMainWindow().addWindow(w);
    }

    @Override
    protected String getDescription() {
        return "Huge windows should be closable";
    }

    @Override
    protected Integer getTicketNumber() {
        return 6784;
    }

}
TOP

Related Classes of com.vaadin.tests.components.window.HugeWindowShouldBeClosable

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.