// Copyright 2003-2009, FreeHEP. package org.freehep.util.io.test; import java.io.File; import java.io.FileInputStream; import org.freehep.util.io.Base64InputStream; /** * Test for Base64 Input Stream. * * @author Mark Donszelmann */ public class Base64InputStreamTest extends AbstractStreamTest { /** * Test method for 'org.freehep.util.io.Base64InputStream.read()' * * @throws Exception * if ref file cannot be found */ public void testRead() throws Exception { File testFile = new File(testDir, "Quote.b64"); File refFile = new File(refDir, "Quote.txt"); Base64InputStream in = new Base64InputStream(new FileInputStream( testFile)); Assert.assertEquals(new FileInputStream(refFile), in, true, refFile .getPath()); } }