Package org.apache.cloudstack.storage.to

Examples of org.apache.cloudstack.storage.to.ImageDataStoreTO


        ImageOnPrimaryDataStoreTO image = Mockito.mock(ImageOnPrimaryDataStoreTO.class);
        PrimaryDataStoreTO primaryStore = Mockito.mock(PrimaryDataStoreTO.class);
        Mockito.when(primaryStore.getUuid()).thenReturn(this.getLocalStorageUuid());
        Mockito.when(image.getPrimaryDataStore()).thenReturn(primaryStore);
       
        ImageDataStoreTO imageStore = Mockito.mock(ImageDataStoreTO.class);
        Mockito.when(imageStore.getType()).thenReturn("http");
       
        TemplateTO template = Mockito.mock(TemplateTO.class);
        Mockito.when(template.getPath()).thenReturn(this.getTemplateUrl());
        Mockito.when(template.getImageDataStore()).thenReturn(imageStore);
       
View Full Code Here

TOP

Related Classes of org.apache.cloudstack.storage.to.ImageDataStoreTO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.