Package fr.imag.adele.apam.pax.test.lifecycle

Examples of fr.imag.adele.apam.pax.test.lifecycle.Service


  public void testNormalInvocation() {

    Implementation implem = waitForImplByName(null, "LifeCycleTest");
    Instance instance = implem.createInstance(null,configuration);
   
    Service service = (Service) instance.getServiceObject();
    service.action();
   
    Assert.assertNotNull("instance must not be destroyed",CST.apamResolver.findInstByName(null,configuration.get("instance.name")));
  }
View Full Code Here


    Implementation implem = waitForImplByName(null, "LifeCycleTest");
    Instance instance = implem.createInstance(null,configuration);

    instance.setProperty("selfDestroy",true);

    Service service = (Service) instance.getServiceObject();
    service.action();
   
    Assert.assertNull("instance must be destroyed",CST.apamResolver.findInstByName(null,configuration.get("instance.name")));
  }
View Full Code Here

TOP

Related Classes of fr.imag.adele.apam.pax.test.lifecycle.Service

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.