if (!repository.isInitialised()) {
repository.setIsTest(true);
repository.initialise(System.getProperty("java.io.tmpdir"));
}
project1 = SimalRepositoryFactory.getProjectService().findProjectBySeeAlso(TEST_PROJECT_URI);
IPerson developer = SimalRepositoryFactory.getPersonService().findBySeeAlso("http://foo.org/~developer/#me");
testDeveloperID = developer.getUniqueSimalID();
testDeveloperEMail = developer.getEmail().iterator().next().getAddress();
IPerson documentor = SimalRepositoryFactory.getPersonService().findBySeeAlso("http://foo.org/~documentor/#me");
documentor.setUsername("author");
documentor.setPassword("password");
String documentorID = documentor.getUniqueSimalID();
testProjectID = project1.getUniqueSimalID();
testProjectURI = RDFUtils.getDefaultProjectURI(testProjectID);
testDeveloperURI = RDFUtils.getDefaultPersonURI(testDeveloperID);
testDocumentorURI = RDFUtils.getDefaultPersonURI(documentorID);