~ubuntu-branches/ubuntu/lucid/commons-io/lucid

« back to all changes in this revision

Viewing changes to src/test/org/apache/commons/io/CopyUtilsTest.java

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2008-02-21 13:26:43 UTC
  • mfrom: (1.1.3 upstream) (3.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080221132643-p4c8f8lhb9rnqnlo
Tags: 1.4-1
* New upstream release
* Bump Standards-Version to 3.7.3
* Bump up debhelper compat to 6
* Replace XS-Vcs headers with Vcs
* debian/patches:
  - remove 01_no_ext_links.dpatch - not required
  - remove 02_no_mkdir_in_homedir.dpatch - not required
* Remove dpatch from Build-Depends
* Update debian/rules and debian/libcommons-io-java-doc.install
  with new target dirs
* debian/copyright: add copyright notice

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
import java.io.Writer;
24
24
import java.util.Arrays;
25
25
 
 
26
import junit.framework.Test;
 
27
import junit.framework.TestSuite;
 
28
import junit.textui.TestRunner;
 
29
 
26
30
import org.apache.commons.io.output.ByteArrayOutputStream;
 
31
import org.apache.commons.io.testtools.FileBasedTestCase;
27
32
import org.apache.commons.io.testtools.YellOnCloseInputStream;
28
33
import org.apache.commons.io.testtools.YellOnFlushAndCloseOutputStream;
29
 
import org.apache.commons.io.testtools.FileBasedTestCase;
30
 
 
31
 
import junit.framework.Test;
32
 
import junit.framework.TestSuite;
33
 
import junit.textui.TestRunner;
34
34
 
35
35
/**
36
36
 * JUnit tests for CopyUtils.
38
38
 * @author Jeff Turner
39
39
 * @author Matthew Hawthorne
40
40
 * @author <a href="mailto:jeremias@apache.org">Jeremias Maerki</a>
41
 
 * @version $Id: CopyUtilsTest.java 437567 2006-08-28 06:39:07Z bayard $
 
41
 * @version $Id: CopyUtilsTest.java 606381 2007-12-22 02:03:16Z ggregory $
42
42
 * @see CopyUtils
43
43
 */
44
44
public class CopyUtilsTest extends FileBasedTestCase {