@Test
@WithClasses({ JaxbElementListProperty.class, StringListProperty.class, JaxbListMapper.class })
public void shouldApplyBuiltInOnJAXBElementList() throws ParseException, DatatypeConfigurationException {
JaxbElementListProperty source = new JaxbElementListProperty();
source.setProp( createJaxbList( "TEST2" ) );
StringListProperty target = JaxbListMapper.INSTANCE.map( source );
assertThat( target ).isNotNull();
assertThat( target.getProp().get( 0 ) ).isEqualTo( "TEST2" );
}