244245246247248249250251252253254
@Override public void assemble( ModuleAssembly module ) throws AssemblyException { new EntityTestAssembler().assemble( module ); module.entities( SomeOtherFoo.class ); } }.module(); UnitOfWork uow = module.newUnitOfWork();
286287288289290291292293294295296
@Override public void assemble( ModuleAssembly module ) throws AssemblyException { new EntityTestAssembler().assemble( module ); module.entities( SomeOtherFoo.class, BasicFoo.class ); } }.module(); UnitOfWork uow = module.newUnitOfWork();