FileUtils.remove(testRepo);
AetherService aetherService = AetherService.getDefaultInstance();
List<RemoteRepository> list = aetherService.getRemoteRepositories();
Assert.assertTrue("Expected at least 1, got "+list.size(), list.size()>0);
RemoteRepository r = aetherService.getMirrorSelector(list).getMirror(list.get(0));
Assert.assertTrue("Expected "+Utils.getMirroredURL()+" got "+r.getUrl(), r.getUrl().equals(Utils.getMirroredURL()));
}