use of com.emc.storageos.vnxe.models.VNXeStorageSystem in project coprhd-controller by CoprHD.
the class VNXUnityFileStorageDeviceTest method testDiscoverUnity.
/**
* Tests Unity discovery
*
* @throws Exception
*/
@Test
public void testDiscoverUnity() {
try {
VNXeApiClient apiclient = _unity.getVnxUnityClient(_device);
VNXeStorageSystem storageSystem = apiclient.getStorageSystem();
Assert.assertTrue("Unity discovery failed " + storageSystem.getId(), true);
} catch (VNXeException uex) {
System.out.println("Unity discovery failed: " + uex.getCause());
}
}
Aggregations