ignored .settings folder
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/information-system/resource-registry-client@157972 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
d52f8f9644
commit
35f07272ac
|
@ -61,11 +61,21 @@ public class ResourceRegistryClientTest extends ScopedTest {
|
|||
resourceRegistryClient.getSchema(Aux.class, true);
|
||||
}
|
||||
|
||||
//@Test
|
||||
@Test
|
||||
public void testGetResource() throws ResourceRegistryException {
|
||||
UUID uuid = UUID.fromString("");
|
||||
UUID uuid = UUID.fromString("bdaccb35-7f27-45a6-8ca9-11d467cb9233");
|
||||
EService eService = resourceRegistryClient.getInstance(EService.class, uuid);
|
||||
logger.trace("{}", eService);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testExists() throws ResourceRegistryException {
|
||||
UUID uuid = UUID.fromString("bdaccb35-7f27-45a6-8ca9-11d467cb9233");
|
||||
resourceRegistryClient.exists(EService.class, uuid);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGetInstances() throws ResourceRegistryException {
|
||||
resourceRegistryClient.getInstances(EService.NAME, true);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,8 +10,7 @@
|
|||
|
||||
|
||||
<logger name="org.gcube" level="INFO" />
|
||||
<logger name="org.gcube.informationsystem.resourceregistry"
|
||||
level="TRACE" />
|
||||
<logger name="org.gcube.informationsystem.resourceregistry" level="TRACE" />
|
||||
|
||||
<root level="WARN">
|
||||
<appender-ref ref="STDOUT" />
|
||||
|
|
Loading…
Reference in New Issue