String testText3 = "." + Http.CRLF;
buffer.append( "." );
buffer.append( testText3 );
writeTextEnd(buffer);
NntpInputStream stream = new NntpInputStream( new ByteArrayInputStream( buffer.toString().getBytes() ) );
assertEquals( testText, stream.readText() );
assertEquals( testText2, stream.readText() );
assertEquals( testText3, stream.readText() );
}