assertEquals("Name is not as expected after adding new name", name, org.getDefaultName());
}
@Test
public void testAddCurrentProject() throws SimalRepositoryException {
IOrganisation org = SimalRepositoryFactory.getOrganisationService().get("http://www.test.com/Organization");
int countBefore = org.getCurrentProjects().size();
org.addCurrentProject("http://test.com/project#1");
int countAfter = org.getCurrentProjects().size();;
assertTrue("We don't seem to have added the current project", countBefore < countAfter);
}