@Test
public void testDSLComplexVariableValueInterpolation() {
final DSLSentence sen = new DSLSentence();
sen.setDefinition( "a {here} and {here}" );
sen.getValues().set( 0, new DSLComplexVariableValue("123","word"));
sen.getValues().set( 1, new DSLComplexVariableValue("some-other-value","word") );
assertEquals( "a word and word",
sen.interpolate() );
}