Uncommented tests

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/information-system/resource-registry-client@176630 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2019-01-17 11:01:16 +00:00
parent dd2300d1a9
commit e473abf024
1 changed files with 4 additions and 4 deletions

View File

@ -100,19 +100,19 @@ public class ResourceRegistryClientTest extends ScopedTest {
logger.trace("{}", eService);
}
// @Test
@Test
public void testGetInstances() throws ResourceRegistryException {
String eServices = resourceRegistryClient.getInstances(EService.NAME, true);
logger.trace("{}", eServices);
}
// @Test
@Test
public void testGetInstancesByClass() throws ResourceRegistryException {
List<EService> eServices = resourceRegistryClient.getInstances(EService.class, true);
logger.trace("{}", eServices);
}
// @Test
@Test
public void testGetRelatedResourcesByClasses() throws ResourceRegistryException {
List<EService> eServices = resourceRegistryClient.getRelatedResources(EService.class, IsRelatedTo.class,
Resource.class, Direction.out, true);
@ -130,7 +130,7 @@ public class ResourceRegistryClientTest extends ScopedTest {
logger.trace("{}", eServices);
}
// @Test
@Test
public void testGetFilteredResourcesByClasses() throws ResourceRegistryException, JsonProcessingException {
Map<String,String> map = new HashMap<>();
map.put("group", "VREManagement");