@Test
public void testInterpolate3() {
final DSLSentence sen = new DSLSentence();
sen.setDefinition( "a {here} and {here}" );
sen.getValues().set( 0, new DSLVariableValue("word"));
sen.getValues().set( 1, new DSLVariableValue("word") );
assertEquals( "a word and word",
sen.interpolate() );
}