use of org.eclipse.ecf.core.IContainer in project ecf by eclipse.
the class ContainerFactoryServiceCreateTest method testCreateContainer1.
public void testCreateContainer1() throws Exception {
final IContainer container = getContainerFactoryService().createContainer(CONTAINER_TYPE_NAME);
assertNotNull(container);
}
use of org.eclipse.ecf.core.IContainer in project ecf by eclipse.
the class ContainerFactoryServiceCreateTest method testCreateBaseContainer4.
public void testCreateBaseContainer4() throws Exception {
final IContainer base = getContainerFactoryService().createContainer(BASE_CONTAINER_TYPE_NAME, new Object[] { IDFactory.getDefault().createGUID() });
assertNotNull(base);
}
use of org.eclipse.ecf.core.IContainer in project ecf by eclipse.
the class ContainerFactoryServiceCreateTest method testCreateBaseContainer0.
public void testCreateBaseContainer0() throws Exception {
final IContainer base = getContainerFactoryService().createContainer();
assertNotNull(base);
}
use of org.eclipse.ecf.core.IContainer in project ecf by eclipse.
the class ContainerFactoryServiceCreateTest method testCreateBaseContainer1.
public void testCreateBaseContainer1() throws Exception {
final ContainerTypeDescription desc = getContainerFactoryService().getDescriptionByName(BASE_CONTAINER_TYPE_NAME);
assertNotNull(desc);
final IContainer base = getContainerFactoryService().createContainer(desc, IDFactory.getDefault().createGUID());
assertNotNull(base);
}
use of org.eclipse.ecf.core.IContainer in project ecf by eclipse.
the class ContainerFactoryServiceCreateTest method testCreateContainer6.
public void testCreateContainer6() throws Exception {
final ContainerTypeDescription desc = getContainerFactoryService().getDescriptionByName(CONTAINER_TYPE_NAME);
assertNotNull(desc);
final IContainer container = getContainerFactoryService().createContainer(desc, IDFactory.getDefault().createGUID());
assertNotNull(container);
}
Aggregations