}
protected byte[] getArticleBytes( String filename ) throws IOException {
Article article = NntpTestUtil.createArticle( filename );
ByteArrayOutputStream articleBaos = new ByteArrayOutputStream();
article.save( new InternetOutputStream( articleBaos ) );
return articleBaos.toByteArray();
}