// Copyright 2001-2005, FreeHEP. package org.freehep.util.io.test; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.InputStream; import org.freehep.util.Assert; import org.freehep.util.io.ASCIIHexOutputStream; /** * Test for ASCII Hex Output Stream. * * @author Mark Donszelmann * @version $Id: ASCIIHexOutputStreamTest.java 8584 2006-08-10 23:06:37Z duns $ */ public class ASCIIHexOutputStreamTest extends AbstractStreamTest { /** * Test method for 'org.freehep.util.io.ASCIIHexOutputStream.write()' * @throws Exception if ref file cannot be found */ public void testWrite() throws Exception { // this XML file needs to be fixed: eol-style=CRLF File testFile = new File(testDir, "TestFile.xml"); File outFile = new File(outDir, "TestFile.hex"); File refFile = new File(refDir, "TestFile.hex"); ASCIIHexOutputStream out = new ASCIIHexOutputStream(new FileOutputStream(outFile)); // NOTE: read byte by byte, so the test will work on all platforms InputStream in = new FileInputStream(testFile); int b; while ((b = in.read()) >= 0) { out.write(b); } in.close(); out.close(); Assert.assertEquals(refFile, outFile, false); } }