use of org.ovirt.engine.api.restapi.test.mappers.impl.BarImpl in project ovirt-engine by oVirt.
the class MappingLocatorTest method testStaticTemplatedFooToBarClassMapper.
@Test
public void testStaticTemplatedFooToBarClassMapper() {
Mapper<FooImpl, BarImpl> mapper = mappingLocator.getMapper(FooImpl.class, BarImpl.class);
assertNotNull(mapper);
BarImpl bar = mapper.map(new FooImpl("foo"), new BarImpl("overwrite", "keep"));
assertEquals("foo", bar.get());
assertEquals("keep", bar.other());
}
use of org.ovirt.engine.api.restapi.test.mappers.impl.BarImpl in project ovirt-engine by oVirt.
the class MappingLocatorTest method testStaticBarToFooInterfaceMapper.
@Test
public void testStaticBarToFooInterfaceMapper() {
Mapper<IBar, IFoo> mapper = mappingLocator.getMapper(IBar.class, IFoo.class);
assertNotNull(mapper);
IFoo foo = mapper.map(new BarImpl("bar"), null);
assertEquals("bar", foo.get());
}
use of org.ovirt.engine.api.restapi.test.mappers.impl.BarImpl in project ovirt-engine by oVirt.
the class MappingLocatorTest method testStaticBarToFooClassMapper.
@Test
public void testStaticBarToFooClassMapper() {
Mapper<BarImpl, FooImpl> mapper = mappingLocator.getMapper(BarImpl.class, FooImpl.class);
assertNotNull(mapper);
IFoo foo = mapper.map(new BarImpl("bar"), null);
assertEquals("bar", foo.get());
}
use of org.ovirt.engine.api.restapi.test.mappers.impl.BarImpl in project ovirt-engine by oVirt.
the class StaticMapper method mapFooToBarClasses.
@Mapping(from = FooImpl.class, to = BarImpl.class)
public static BarImpl mapFooToBarClasses(IFoo foo, BarImpl template) {
BarImpl bar = template != null ? template : new BarImpl();
bar.set(foo.get());
return bar;
}
use of org.ovirt.engine.api.restapi.test.mappers.impl.BarImpl in project ovirt-engine by oVirt.
the class StaticMapper method mapFooToBarInterfaces.
@Mapping(from = IFoo.class, to = IBar.class)
public static IBar mapFooToBarInterfaces(IFoo foo, IBar template) {
IBar bar = template != null ? template : new BarImpl();
bar.set(foo.get());
return bar;
}
Aggregations