Package gui.testSetup

Examples of gui.testSetup.SetupEditor


    /**
     * Launches window to show JUnit test setup.
     */
    public void showTestSetup()
    {
        SetupEditor setup = new SetupEditor(controller, TestConfSetting.SET_UP_METHOD);
        setup.showUI();
    }
View Full Code Here


    /**
     * Launches window to show JUnit test teardown.
     */
    public void showTestTeardown()
    {
        SetupEditor tearDown = new SetupEditor(controller, TestConfSetting.TEAR_DOWN_METHOD);
        tearDown.showUI();
    }
View Full Code Here

    /**
     * Launches window to show JUnit test header.
     */
    public void showTestHeader()
    {
        SetupEditor tearDown = new SetupEditor(controller, TestConfSetting.TEST_HEADER);
        tearDown.showUI();
    }
View Full Code Here

TOP

Related Classes of gui.testSetup.SetupEditor

Copyright © 2018 www.massapicom. 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.