@Test
 public void testExpertsRecommendationsCRUD()
     throws URISyntaxException, RecommendationsStorageException {
   recommendationsStorage.deleteExpertsRecommandationsForProject(new URI(PROJECT_URI));
   List<UserProfile> expected = PersistenceDomainFixtures.getUserProfiles();
   recommendationsStorage.storeExpertsRecommendations(new URI(PROJECT_URI), expected);
   List<UserProfile> actual =
       recommendationsStorage.getExpertsRecommendations(new URI(PROJECT_URI));
   Assert.assertNotNull(actual);
   Assert.assertEqualsNoOrder(actual.toArray(), expected.toArray());
   recommendationsStorage.deleteExpertsRecommandationsForProject(new URI(PROJECT_URI));
 }