* @throws StreamException
* @throws FormatterException
*/
@Test(expected = StreamException.class)
public void testFileInStream() throws StreamException, FormatterException {
FileInStream inStream = new FileInStream("somewhere");
StringOutStream outStream = new StringOutStream();
formatter.format(inStream, outStream, options);
}