Package gui.testSetup

Examples of gui.testSetup.SetupEditor.showUI()


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

    /**
     * Launches window to show JUnit test teardown.
     */
 
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();
    }

    /**
     * Launches window to show JUnit test header.
     */
 
View Full Code Here

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

    /**
     * Updates the gui to show the next method.
     */
 
View Full Code Here

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.