assertNotNull("Connector Type is null!", con.getConnection());
Fabric8Facade fabric8 = con.getConnection().getFabricFacade();
assertNotNull("Fabric8 DTO is null!", fabric8);
ContainerDTO container = fabric8.getCurrentContainer();
assertNotNull("getCurrentContainer() returned NULL!", container);
// TODO: create container, start it, check if started, stop it, check if stopped, delete container
fabric8.stopContainer(container);
} catch (IOException ex) {