/** * Method tearDown is overwriting the framework method to clean up after each single test of this * TestCase. It's called from the JUnit framework only. */ protected void tearDown() throws Exception { // JUnitDoclet begin method testcase.tearDown mdidesktoppane = null; super.tearDown(); // JUnitDoclet end method testcase.tearDown }
/** * Method tearDown is overwriting the framework method to clean up after each single test of this * TestCase. It's called from the JUnit framework only. */ protected void tearDown() throws Exception { // JUnitDoclet begin method testcase.tearDown pastecommand = null; super.tearDown(); // JUnitDoclet end method testcase.tearDown }
/** * Method setUp is overwriting the framework method to prepare an instance of this TestCase for a * single test. It's called from the JUnit framework only. */ protected void setUp() throws Exception { // JUnitDoclet begin method testcase.setUp super.setUp(); mdidesktoppane = createInstance(); // JUnitDoclet end method testcase.setUp }
/** * Method setUp is overwriting the framework method to prepare an instance of this TestCase for a * single test. It's called from the JUnit framework only. */ protected void setUp() throws Exception { // JUnitDoclet begin method testcase.setUp super.setUp(); pastecommand = createInstance(); // JUnitDoclet end method testcase.setUp }