public void testGetInstanceForFramework() throws Exception {
final Framework framework = getFrameworkInstance();
final NodeStepExecutionService service = NodeStepExecutionService.getInstanceForFramework(
framework);
assertNotNull(service);
final FrameworkSupportService foundservice = framework.getService(ServiceNameConstants.WorkflowNodeStep);
assertNotNull(foundservice);
assertTrue(foundservice instanceof NodeStepExecutionService);
assertEquals(foundservice, service);
}