]> source.dussan.org Git - poi.git/commitdiff
make spreadsheet file names static final rather than initializing them with setUp()
authorJaven O'Neal <onealj@apache.org>
Tue, 29 Dec 2015 08:53:46 +0000 (08:53 +0000)
committerJaven O'Neal <onealj@apache.org>
Tue, 29 Dec 2015 08:53:46 +0000 (08:53 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1722073 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/testcases/org/apache/poi/ss/TestWorkbookFactory.java

index cafdee46cbd275e0959a116868e9253dc2f69932..38ce0b20af2381720a630be59d063b88fe8491fc 100644 (file)
@@ -36,19 +36,11 @@ import org.apache.poi.openxml4j.opc.OPCPackage;
 import junit.framework.TestCase;
 
 public final class TestWorkbookFactory extends TestCase {
-    private String xls;
-    private String xlsx;
-    private String[] xls_prot;
-    private String[] xlsx_prot;
-    private String txt;
-
-    protected void setUp() {
-        xls = "SampleSS.xls";
-        xlsx = "SampleSS.xlsx";
-        xls_prot = new String[] {"password.xls", "password"};
-        xlsx_prot = new String[]{"protected_passtika.xlsx", "tika"};
-        txt = "SampleSS.txt";
-    }
+    private static final String xls = "SampleSS.xls";
+    private static final String xlsx = "SampleSS.xlsx";
+    private static final String[] xls_prot = new String[] {"password.xls", "password"};
+    private static final String[] xlsx_prot = new String[]{"protected_passtika.xlsx", "tika"};
+    private static final String txt = "SampleSS.txt";
 
     public void testCreateNative() throws Exception {
         Workbook wb;