When using mockobjects-0.07-j1.4-j2ee1.3.jar and
associated alt jar and junning jdk v1.4.1/junit v3.8.1......
.println() works under j1.4 but not .print()
Example
In Servlet Request Handling Function
PrintWriter wr = response.getWriter();
//This will produce output obtainable via
//myMockHttpResponse.getOutputStreamContents()
wr.println( "Hello" );
//This howerver, will not
wr.print( "Hello" );