Package com.changestuffs.server.utils

Examples of com.changestuffs.server.utils.ArticlesOAM


  public void differentInstances(){
    Injector injector = Guice.createInjector(new MyModule(), new JpaPersistModule("appEngine"));
    PersistService service = injector.getInstance(PersistService.class);
    service.start();
   
    ArticlesOAM oam1 = injector.getInstance(ArticlesOAM.class);
    ArticlesOAM oam2 = injector.getInstance(ArticlesOAM.class);
    assertNotSame(oam1, oam2);
   
    service.stop();
  }
View Full Code Here

TOP

Related Classes of com.changestuffs.server.utils.ArticlesOAM

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.