X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fgeneral%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fio%2FTestData.java;h=575c108cfc3dcbfa7ebb359a5ab72b73fc39afff;hb=abb98bd252934e4040f8280c20fff8739b6a0fd1;hp=1bb7cdd63f4493e26aa4e58e51eee1ab595cb1e3;hpb=8de36ff0206c996baf3ee4adc3e2293b12ff5f39;p=utils diff --git a/support/general/src/test/java/org/wamblee/io/TestData.java b/support/general/src/test/java/org/wamblee/io/TestData.java index 1bb7cdd6..575c108c 100644 --- a/support/general/src/test/java/org/wamblee/io/TestData.java +++ b/support/general/src/test/java/org/wamblee/io/TestData.java @@ -1,12 +1,12 @@ /* - * 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. @@ -15,18 +15,13 @@ */ package org.wamblee.io; -import junit.framework.Assert; - import java.io.ByteArrayInputStream; import java.io.File; -import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; -import java.io.OutputStream; -import java.nio.MappedByteBuffer; -import java.nio.channels.FileChannel; +import junit.framework.Assert; /** * TestData provides a convenient interface for managing test output files. @@ -34,7 +29,6 @@ import java.nio.channels.FileChannel; * @author Erik Brakkee */ public final class TestData { - private Object testcase; private File root; /** @@ -43,7 +37,6 @@ public final class TestData { * test. */ public TestData(Object aTestcase) { - testcase = aTestcase; root = getTestRootDir(aTestcase); FileSystemUtils.createDir(root); } @@ -98,7 +91,7 @@ public final class TestData { /** * Recursively copy a directory contents to the test output directory. * - * @param sSrc + * @param aSrc * Source directory to copy. */ public void copyDir(File aSrc) {