@Test
public void testAddName() throws SimalRepositoryException {
IOrganisation org = SimalRepositoryFactory.getOrganisationService().get("http://www.test.com/Organization");
String name = "Test Name";
org.addName(name);
assertEquals("Name is not as expected after adding new name", name, org.getDefaultName());
}
@Test
public void testAddCurrentProject() throws SimalRepositoryException {