Package org.jclouds.fujitsu.fgcp.domain

Examples of org.jclouds.fujitsu.fgcp.domain.DiskImage


      assertEquals(os.getVersion(), "6.2");
   }

   @Test
   public void testUnrecognizedOsVersion() {
      DiskImage image = DiskImage.builder()
            .osName("Windows Server 2099 (256 bit)").build();

      OperatingSystem os = new DiskImageToOperatingSystem().apply(image);

      assertNotNull(os);
View Full Code Here


      assertNull(os.getVersion());
   }

   @Test
   public void testOsVersionMissing() {
      DiskImage image = DiskImage.builder().osName("asd Server").build();

      OperatingSystem os = new DiskImageToOperatingSystem().apply(image);
      assertNotNull(os);
      assertNull(os.getVersion(), "os.getVersion(): \'" + os.getVersion()
            + "\'");
View Full Code Here

TOP

Related Classes of org.jclouds.fujitsu.fgcp.domain.DiskImage

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.