use of org.guvnor.ala.runtime.Runtime in project kie-wb-common by kiegroup.
the class InMemoryRuntimeRegistryTest method testGetRuntimeById.
@Test
public void testGetRuntimeById() {
String id = runtime.getId();
runtimeRegistry.registerRuntime(runtime);
Runtime result = runtimeRegistry.getRuntimeById(id);
assertEquals(runtime, result);
}
Aggregations