assertThat(property.getMemberType(), is("property"));
assertThat(property.getFormat(), is(nullValue()));
assertThat(property.getXIsisFormat(), is("char"));
scalarRepr = property.getRepresentation("value").as(ScalarValueRepresentation.class);
assertThat(scalarRepr.isString(), is(true));
Character charValue = scalarRepr.asChar();
assertThat(charValue, is('a'));
property = domainObjectRepr.getProperty("floatProperty");
assertThat(property.getMemberType(), is("property"));
assertThat(property.getFormat(), is("decimal"));