X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fgeneral%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fio%2FTestData.java;h=7f72aad524d86c14f6177ce9fc56bd78937949d4;hb=4a575582a5c2999bd816b197d9cf274b4b3ddcd7;hp=1ddf3adaab902db7b1d6370529e93b94286f0db3;hpb=ddd261f331280640c5b53c7128230b629ebcd268;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 1ddf3ada..7f72aad5 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,27 +15,20 @@ */ 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. - * + * * @author Erik Brakkee */ public final class TestData { - private Object testcase; private File root; /** @@ -44,14 +37,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 +73,7 @@ public final class TestData { /** * Returns a temporary directory. - * + * * @return Temporary directory. */ public File getTmpDir() { @@ -98,7 +90,7 @@ public final class TestData { /** * Recursively copy a directory contents to the test output directory. - * + * * @param sSrc * Source directory to copy. */ @@ -109,7 +101,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 +111,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 +121,7 @@ public final class TestData { /** * Copies a resource to the root directory of the test output. - * + * * @param aResource * Resource. */ @@ -144,7 +136,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 +147,7 @@ public final class TestData { /** * Deletes a directory including its contents. - * + * * @param aRelative * Relative path. */ @@ -165,7 +157,7 @@ public final class TestData { /** * Deletes a directory recursively. - * + * * @param aRelative * Relative path. */ @@ -175,7 +167,7 @@ public final class TestData { /** * Gets the root of the test output directory. - * + * * @return Root of the test output. */ public File getRoot() {