use of org.eclipse.ecf.core.IContainer in project ecf by eclipse.
the class ContainerFactoryCreateTest method testCreateBaseContainer2.
public void testCreateBaseContainer2() throws Exception {
final IContainer base = ContainerFactory.getDefault().createContainer(BASE_CONTAINER_TYPE_NAME, IDFactory.getDefault().createGUID());
assertNotNull(base);
}
use of org.eclipse.ecf.core.IContainer in project ecf by eclipse.
the class ContainerFactoryServiceCreateTest method testCreateContainer3.
public void testCreateContainer3() throws Exception {
final ContainerTypeDescription desc = getContainerFactoryService().getDescriptionByName(CONTAINER_TYPE_NAME);
assertNotNull(desc);
final IContainer container = getContainerFactoryService().createContainer(desc);
assertNotNull(container);
}
use of org.eclipse.ecf.core.IContainer in project ecf by eclipse.
the class ContainerFactoryServiceCreateTest method testCreateBaseContainer5.
public void testCreateBaseContainer5() throws Exception {
final ContainerTypeDescription desc = getContainerFactoryService().getDescriptionByName(BASE_CONTAINER_TYPE_NAME);
assertNotNull(desc);
final IContainer base = getContainerFactoryService().createContainer(desc, IDFactory.getDefault().createGUID(), new Object[] { "param" });
assertNotNull(base);
}
use of org.eclipse.ecf.core.IContainer in project ecf by eclipse.
the class ContainerFactoryServiceCreateTest method testCreateContainer7.
public void testCreateContainer7() throws Exception {
final IContainer container = getContainerFactoryService().createContainer(CONTAINER_TYPE_NAME, IDFactory.getDefault().createGUID());
assertNotNull(container);
}
use of org.eclipse.ecf.core.IContainer in project ecf by eclipse.
the class ContainerFactoryServiceCreateTest method testCreateContainer2.
public void testCreateContainer2() throws Exception {
final IContainer container = getContainerFactoryService().createContainer(CONTAINER_TYPE_NAME);
assertNotNull(container);
}
Aggregations