}
public void testRenderingSpeed1()
throws Exception
{
Benchmark sw = new Benchmark();
sw.start();
for( int i = 0; i < 100; i++ )
{
translate( brokenPageText );
}
sw.stop();
System.out.println("100 page renderings: "+sw+" ("+sw.toString(100)+" renderings/second)");
}