191192193194195196197198199200201
* 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. */
200201202203204205206207208209210
* 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. */
209210211212213214215216217218219
* 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. */