@Test
public void testProjectImport() throws FileNotFoundException, IOException, SimalRepositoryException, DuplicateURIException, URISyntaxException {
File file = new File(ISimalRepository.class.getClassLoader().getResource(OHLOH_TEST_DATA).toURI());
Ohloh ohloh = new Ohloh();
ohloh.importProjects(file);
Set<IProject> allProjects = repo.getAllProjects();
int numProjectsbefore = allProjects.size();
Iterator<IProject> projects = allProjects.iterator();
IProject project;