>
> + private VirtualGuest createVirtualGuest() {
> + return VirtualGuest.builder()
> + .domain("example.com")
> + .hostname("host1")
> + .id(1301396)
> + .maxMemory(1024)
> + .startCpus(1)
> + .operatingSystem(OperatingSystem.builder().id("UBUNTU_LATEST")
> +
> .operatingSystemReferenceCode("UBUNTU_LATEST")
> + .build())
> + .datacenter(Datacenter.builder().name("test").build())
> + .build();
> }
> }
There are many expect tests missing here. Add the tests for ALL the methods in
the api class.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/296/files#r11139874