> +import org.jclouds.date.internal.SimpleDateFormatDateService;
> +import org.jclouds.googlecomputeengine.domain.Deprecated.State;
> +import
> org.jclouds.googlecomputeengine.internal.BaseGoogleComputeEngineApiMockTest;
> +import org.jclouds.googlecomputeengine.options.DeprecateOptions;
> +import org.jclouds.googlecomputeengine.parse.ParseImageListTest;
> +import org.jclouds.googlecomputeengine.parse.ParseImageTest;
> +import org.jclouds.googlecomputeengine.parse.ParseOperationTest;
> +import org.testng.annotations.BeforeMethod;
> +import org.testng.annotations.Test;
> +
> +@Test(groups = "unit", testName = "ImageApiMockTest", singleThreaded = true)
> +public class ImageApiMockTest extends BaseGoogleComputeEngineApiMockTest {
> +
> + @BeforeMethod
> + @Override
> + public void start() throws IOException {
this is a little complicated, as we don't need to hook into lifecycle. just
api().images() directly, or add a method at the end.
```java
ImageApi images(){
return api().images();
}
```
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/98/files#r20734473