@Test
public void testPiotrek() {
// Piotrek Smulikowski's test
this.phraseFactory.setLexicon(this.lexicon);
PhraseElement sent = this.phraseFactory.createClause(
"I", "shoot", "the duck"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
sent.setFeature(Feature.TENSE,Tense.PAST);
PhraseElement loc = this.phraseFactory.createPrepositionPhrase(
"at", "the Shooting Range"); //$NON-NLS-1$ //$NON-NLS-2$
sent.addPostModifier(loc);
sent.setFeature(Feature.CUE_PHRASE, "then"); //$NON-NLS-1$
Assert.assertEquals("then I shot the duck at the Shooting Range", //$NON-NLS-1$