~ubuntu-branches/ubuntu/utopic/ant/utopic

« back to all changes in this revision

Viewing changes to src/tests/junit/org/apache/tools/tar/TarOutputStreamTest.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2014-05-09 11:46:04 UTC
  • mfrom: (25.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20140509114604-3h26sbqgjef3jln4
Tags: 1.9.4-1
* New upstream release
  - Refreshed the patches
  - Removed the patch for #735786 (Fixed upstream)

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
package org.apache.tools.tar;
20
20
 
 
21
import org.junit.Test;
 
22
 
21
23
import java.io.ByteArrayOutputStream;
22
24
import java.io.IOException;
23
25
 
24
 
import junit.framework.TestCase;
25
 
 
26
 
public class TarOutputStreamTest extends TestCase {
27
 
 
 
26
public class TarOutputStreamTest {
 
27
 
 
28
    @Test
28
29
    public void testClose() throws IOException {
29
30
        ByteArrayOutputStream byteStream = new ByteArrayOutputStream();
30
31
        TarOutputStream stream = new TarOutputStream(byteStream);