ParseException target = SourceTargetMapper.INSTANCE.sourceToTarget( source );
assertThat( target ).isNotNull();
Foo foo = new Foo();
foo.setName( "bar" );
org.mapstruct.ap.test.imports.to.Foo foo2 = SourceTargetMapper.INSTANCE.fooToFoo( foo );
assertThat( foo2 ).isNotNull();
assertThat( foo2.getName() ).isEqualTo( "bar" );
}