Author: damjan
Date: Fri Mar  4 03:03:09 2016
New Revision: 1733554

URL: http://svn.apache.org/viewvc?rev=1733554&view=rev
Log:
Hide 2 utility classes that falsely register as failing tests.

Patch by: me


Modified:
    openoffice/trunk/test/testgui/source/bvt/gui/FileExport.java

Modified: openoffice/trunk/test/testgui/source/bvt/gui/FileExport.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/test/testgui/source/bvt/gui/FileExport.java?rev=1733554&r1=1733553&r2=1733554&view=diff
==============================================================================
--- openoffice/trunk/test/testgui/source/bvt/gui/FileExport.java (original)
+++ openoffice/trunk/test/testgui/source/bvt/gui/FileExport.java Fri Mar  4 
03:03:09 2016
@@ -54,33 +54,31 @@ import org.openoffice.test.common.Logger
 import org.openoffice.test.common.Testspace;
 import org.openoffice.test.vcl.widgets.VclDialog;
 
-/**
- * 
- */
-class TestType {
-
-       public TestType(boolean doc, boolean spread, boolean slide) {
-               documentT = doc;
-               spreadsheetT = spread;
-               slideT = slide;
-       }
 
-       public boolean documentT;
-       public boolean spreadsheetT;
-       public boolean slideT;
-};
-
-class ContinuePoint {
-       public String path;
-       public int i;
-
-       ContinuePoint() {
-               path = "";
-               i = 0;
+public class FileExport {
+       private static class TestType {
+
+               public TestType(boolean doc, boolean spread, boolean slide) {
+                       documentT = doc;
+                       spreadsheetT = spread;
+                       slideT = slide;
+               }
+
+               public boolean documentT;
+               public boolean spreadsheetT;
+               public boolean slideT;
+       };
+
+       private static class ContinuePoint {
+               public String path;
+               public int i;
+
+               ContinuePoint() {
+                       path = "";
+                       i = 0;
+               }
        }
-}
 
-public class FileExport {
        // for example
        // the path is "D:\\aoo\\utaoo\\testspace\\ooxmlsamples"
        String samplespath = "";// a dir


Reply via email to