190191192193194195196197
/** * Launches window to show JUnit test setup. */ public void showTestSetup() { SetupEditor setup = new SetupEditor(controller, TestConfSetting.SET_UP_METHOD); setup.showUI(); }
199200201202203204205206
/** * Launches window to show JUnit test teardown. */ public void showTestTeardown() { SetupEditor tearDown = new SetupEditor(controller, TestConfSetting.TEAR_DOWN_METHOD); tearDown.showUI(); }
208209210211212213214215
/** * Launches window to show JUnit test header. */ public void showTestHeader() { SetupEditor tearDown = new SetupEditor(controller, TestConfSetting.TEST_HEADER); tearDown.showUI(); }