public void testProcessText() throws Exception {
TemplateActionHandlerStub tahs = new TemplateActionHandlerStub();
BasicTemplateElementProcessor btep = create( tahs );
String content = "content";
Block textBlock = new Block( Block.TYPE_text, content );
btep.process( textBlock );
assertTrue( content.equals( tahs.getLastAppendedContent() ) );
}