> -
> - try {
> - Set<? extends NodeMetadata> nodes =
> view.getComputeService().createNodesInGroup(groupName, 1, template);
> - assertThat(nodes).hasSize(1);
> - } finally {
> - view.getComputeService().destroyNodesMatching(inGroup(groupName));
> - }
> - }
> -
> - @Test(dependsOnMethods = "testLinuxNode")
> - public void testWindowsNode() throws RunNodesException {
> - final String groupName = this.azureGroup;
> - final TemplateBuilder templateBuilder =
> view.getComputeService().templateBuilder();
> -
> templateBuilder.imageId("global/MicrosoftWindowsServer/WindowsServer/Windows-Server-Technical-Preview");
> - templateBuilder.hardwareId("Standard_A0");
> + templateBuilder.hardwareId("Standard_A5");
> templateBuilder.locationId("westus");
> final Template template = templateBuilder.build();
>
Consider removing this class. Tests here should already be covered by the
`AzureComputeServiceLiveTest`.
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/291/files/8a39037237f5cccc7d100bc58a9a82bdb89924b1#r67889315