>
> + private VirtualGuest createVirtualGuest() {
> + return VirtualGuest.builder()
> + .domain("example.com")
> + .hostname("host1")
> + .id(1301396)
> + .maxMemory(1024)
> + .startCpus(1)
> +
> .operatingSystem(OperatingSystem.builder().id("UBUNTU_LATEST").build())
> + .datacenter(Datacenter.builder().name("test").build())
> + .build();
> }
> }
There are only the expect tests for the list/get/create methods. All other
methods in the VirtualGuestApi class should have the corresponding expect tests
too.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/296/files#r10453210