Package com.wideplay.warp.persist

Examples of com.wideplay.warp.persist.PersistenceService


@RunWith(Enclosed.class)
public class HibernateInitializerTest {
  public static class Creating_A_Hibernate_Initializer {
    @Test
    public void itStartsAPersistenceService() throws Exception {
      final PersistenceService service = mock(PersistenceService.class);
     
      final Injector injector = Guice.createInjector(new AbstractModule() {
        @Override
        protected void configure() {
          bind(PersistenceService.class).toInstance(service);
View Full Code Here

TOP

Related Classes of com.wideplay.warp.persist.PersistenceService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.