String output14a = realiser.realise( par1 ).getRealisation() ;
Assert.assertEquals( "Mary chases the monkey. The monkey fights back. Mary is nervous.\n\n", output14a ) ;
// actual output ~ Mary chases the monkey. The monkey fights back. Mary is nervous.
// So what exactly is JUnit not happy about?
DocumentElement section = nlgFactory.createSection( "The Trials and Tribulation of Mary and the Monkey" ) ;
section.addComponent( par1 ) ;
String output14b = realiser.realise( section ).getRealisation() ;
Assert.assertEquals( "The Trials and Tribulation of Mary and the Monkey\nMary chases the monkey. The monkey fights back. Mary is nervous.\n\n", output14b ) ;
} // testSection14