@Test
@WithClasses({ JaxbElementProperty.class, StringProperty.class, JaxbMapper.class })
public void shoulApplyBuiltInOnJAXBElement() throws ParseException, DatatypeConfigurationException {
JaxbElementProperty source = new JaxbElementProperty();
source.setProp( createJaxb( "TEST" ) );
StringProperty target = JaxbMapper.INSTANCE.map( source );
assertThat( target ).isNotNull();
assertThat( target.getProp() ).isEqualTo( "TEST" );
}