diff --git a/src/test/java/org/gcube/informationsystem/resourceregistry/client/proxy/ResourceRegistryClientTest.java b/src/test/java/org/gcube/informationsystem/resourceregistry/client/proxy/ResourceRegistryClientTest.java index 94673f2..c45e3ea 100644 --- a/src/test/java/org/gcube/informationsystem/resourceregistry/client/proxy/ResourceRegistryClientTest.java +++ b/src/test/java/org/gcube/informationsystem/resourceregistry/client/proxy/ResourceRegistryClientTest.java @@ -5,6 +5,7 @@ package org.gcube.informationsystem.resourceregistry.client.proxy; import org.gcube.common.scope.api.ScopeProvider; import org.gcube.informationsystem.resourceregistry.api.exceptions.InvalidQueryException; +import org.gcube.informationsystem.resourceregistry.api.exceptions.schema.SchemaNotFoundException; import org.junit.Before; import org.junit.Test; import org.slf4j.Logger; @@ -33,4 +34,20 @@ public class ResourceRegistryClientTest { logger.debug(res); } + + @Test + public void testgetFacetSchema() throws SchemaNotFoundException { + String res = resourceRegistryClient.getFacetSchema("ContactFacet"); + logger.debug(res); + } + + @Test + public void testgetResourceSchema() throws SchemaNotFoundException { + String res = resourceRegistryClient.getResourceSchema("HostingNode"); + logger.debug(res); + } + + + + }