You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by wa...@apache.org on 2012/10/25 09:07:43 UTC

svn commit: r1401993 - in /incubator/ooo/trunk/test/testgui/source/fvt/gui: sd/shape/ShapeTypes.java sw/table/TableGeneral.java

Author: wanglf
Date: Thu Oct 25 07:07:43 2012
New Revision: 1401993

URL: http://svn.apache.org/viewvc?rev=1401993&view=rev
Log:
close navigator in teardown method.

Modified:
    incubator/ooo/trunk/test/testgui/source/fvt/gui/sd/shape/ShapeTypes.java
    incubator/ooo/trunk/test/testgui/source/fvt/gui/sw/table/TableGeneral.java

Modified: incubator/ooo/trunk/test/testgui/source/fvt/gui/sd/shape/ShapeTypes.java
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/test/testgui/source/fvt/gui/sd/shape/ShapeTypes.java?rev=1401993&r1=1401992&r2=1401993&view=diff
==============================================================================
--- incubator/ooo/trunk/test/testgui/source/fvt/gui/sd/shape/ShapeTypes.java (original)
+++ incubator/ooo/trunk/test/testgui/source/fvt/gui/sd/shape/ShapeTypes.java Thu Oct 25 07:07:43 2012
@@ -58,6 +58,9 @@ public class ShapeTypes {
 
 	@After
 	public void tearDown() throws Exception {
+		if (sdNavigatorDlg.exists()) {
+			sdNavigatorDlg.close();
+		}
 		app.stop();
 	}
 

Modified: incubator/ooo/trunk/test/testgui/source/fvt/gui/sw/table/TableGeneral.java
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/test/testgui/source/fvt/gui/sw/table/TableGeneral.java?rev=1401993&r1=1401992&r2=1401993&view=diff
==============================================================================
--- incubator/ooo/trunk/test/testgui/source/fvt/gui/sw/table/TableGeneral.java (original)
+++ incubator/ooo/trunk/test/testgui/source/fvt/gui/sw/table/TableGeneral.java Thu Oct 25 07:07:43 2012
@@ -55,7 +55,7 @@ public class TableGeneral {
 
 	@After
 	public void tearDown() throws Exception {
-		app.close();
+		app.stop();
 	}
 
 	@Test