use of acs.benchmark.util.ConcurrentComponentAccessUtil in project ACS by ACS-Community.
the class StressStartComponents method setUp.
@Override
protected void setUp() throws Exception {
super.setUp();
contSvcs = super.getContainerServices();
assertNotNull(contSvcs);
logger = contSvcs.getLogger();
assertNotNull(logger);
adminOperations = new ComponentsLoadingAdminOperations(logger);
contSvcs.getAdvancedContainerServices().connectManagerAdmin(adminOperations, true);
componentAccessUtil = new ConcurrentComponentAccessUtil(getContainerServices());
assertNotNull(componentAccessUtil);
containerUtil = new ContainerUtil(contSvcs);
assertNotNull(containerUtil);
containerUtil.loginToManager();
componentAccessUtil.start();
}
Aggregations