more findbugs
[utils] / support / general / src / test / java / org / wamblee / io / TestData.java
index 1ddf3adaab902db7b1d6370529e93b94286f0db3..f34b0a00ebd3d6815e822ab99760a7384bd53b6c 100644 (file)
@@ -1,18 +1,18 @@
 /*
- * Copyright 2005 the original author or authors.
- *
+ * Copyright 2005-2010 the original author or authors.
+ * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- *
+ * 
  *      http://www.apache.org/licenses/LICENSE-2.0
- *
+ * 
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */
+ */ 
 package org.wamblee.io;
 
 import junit.framework.Assert;
@@ -28,14 +28,12 @@ import java.io.OutputStream;
 import java.nio.MappedByteBuffer;
 import java.nio.channels.FileChannel;
 
-
 /**
  * TestData provides a convenient interface for managing test output files.
- *
+ * 
  * @author Erik Brakkee
  */
 public final class TestData {
-    private Object testcase;
     private File root;
 
     /**
@@ -44,14 +42,13 @@ public final class TestData {
      * test.
      */
     public TestData(Object aTestcase) {
-        testcase = aTestcase;
         root = getTestRootDir(aTestcase);
         FileSystemUtils.createDir(root);
     }
 
     /**
      * Obtain root directory of JUnit tests.
-     *
+     * 
      * @return Directory name.
      */
     private static File getTestRootDir(Object aTestcase) {
@@ -81,7 +78,7 @@ public final class TestData {
 
     /**
      * Returns a temporary directory.
-     *
+     * 
      * @return Temporary directory.
      */
     public File getTmpDir() {
@@ -98,7 +95,7 @@ public final class TestData {
 
     /**
      * Recursively copy a directory contents to the test output directory.
-     *
+     * 
      * @param sSrc
      *            Source directory to copy.
      */
@@ -109,7 +106,7 @@ public final class TestData {
     /**
      * Copies a classpath resource to a relative path in the test output
      * directory.
-     *
+     * 
      * @param aResource
      *            Resource to copy.
      * @param aRelativePath
@@ -119,7 +116,7 @@ public final class TestData {
         try {
             InputStream is = new ClassPathResource(aResource).getInputStream();
             FileOutputStream fos = new FileOutputStream(new File(root,
-                        aRelativePath));
+                aRelativePath));
             FileSystemUtils.copyStream(is, fos);
         } catch (IOException e) {
             e.printStackTrace();
@@ -129,7 +126,7 @@ public final class TestData {
 
     /**
      * Copies a resource to the root directory of the test output.
-     *
+     * 
      * @param aResource
      *            Resource.
      */
@@ -144,7 +141,7 @@ public final class TestData {
 
     /**
      * Deletes a file or directory relative to the test output root.
-     *
+     * 
      * @param aRelative
      *            Relative path. The testcase will fail if the file or directory
      *            cannot be removed.
@@ -155,7 +152,7 @@ public final class TestData {
 
     /**
      * Deletes a directory including its contents.
-     *
+     * 
      * @param aRelative
      *            Relative path.
      */
@@ -165,7 +162,7 @@ public final class TestData {
 
     /**
      * Deletes a directory recursively.
-     *
+     * 
      * @param aRelative
      *            Relative path.
      */
@@ -175,7 +172,7 @@ public final class TestData {
 
     /**
      * Gets the root of the test output directory.
-     *
+     * 
      * @return Root of the test output.
      */
     public File getRoot() {