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

Examples of fr.imag.adele.apam.pax.test.lifecycle.Service.action()


    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")));
  }

  @Test
View Full Code Here


    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")));
  }

  @Test
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.