use of org.mapstruct.ap.test.builtin.bean.JaxbElementProperty in project mapstruct by mapstruct.
the class BuiltInTest method shouldApplyBuiltInOnJAXBElementExtra.
@ProcessorTest
@WithClasses({ JaxbMapper.class, JaxbElementProperty.class })
@WithJavaxJaxb
@IssueKey("1698")
public void shouldApplyBuiltInOnJAXBElementExtra() {
JaxbElementProperty source = new JaxbElementProperty();
source.setProp(createJaxb("5"));
source.publicProp = createJaxb("5");
BigDecimalProperty target = JaxbMapper.INSTANCE.mapBD(source);
assertThat(target).isNotNull();
assertThat(target.getProp()).isEqualTo(new BigDecimal("5"));
assertThat(target.publicProp).isEqualTo(new BigDecimal("5"));
JaxbElementProperty source2 = new JaxbElementProperty();
source2.setProp(createJaxb("5"));
source2.publicProp = createJaxb("5");
SomeTypeProperty target2 = JaxbMapper.INSTANCE.mapSomeType(source2);
assertThat(target2).isNotNull();
assertThat(target2.publicProp).isNotNull();
assertThat(target2.getProp()).isNotNull();
}
use of org.mapstruct.ap.test.builtin.bean.JaxbElementProperty in project mapstruct by mapstruct.
the class BuiltInTest method shouldApplyBuiltInOnJAXBElement.
@ProcessorTest
@WithClasses({ JaxbMapper.class, JaxbElementProperty.class })
@WithJavaxJaxb
public void shouldApplyBuiltInOnJAXBElement() {
JaxbElementProperty source = new JaxbElementProperty();
source.setProp(createJaxb("TEST"));
source.publicProp = createJaxb("PUBLIC TEST");
StringProperty target = JaxbMapper.INSTANCE.map(source);
assertThat(target).isNotNull();
assertThat(target.getProp()).isEqualTo("TEST");
assertThat(target.publicProp).isEqualTo("PUBLIC TEST");
}
Aggregations