@Test(dependsOnMethods = "connectionTest")
 public void disconnectionTest() throws OcmgException {
   if (!isOsSupported()) {
     return;
   }
   connection.disconnect();
 }
 @Test
 public void connectionTest() throws OcmgException {
   if (!isOsSupported()) {
     return;
   }
   Resource resource = createTestResource();
   connection = new OcmgConnection(resource);
   connection.connect();
 }