> @@ -548,16 +548,28 @@ protected void assertNodeZero(Collection<? extends > NodeMetadata> metadataSet) { > } > > @Test(enabled = true, dependsOnMethods = "testGet") > - public void testReboot() throws Exception { > - client.rebootNodesMatching(inGroup(group));// TODO test > + public void testReboot() throws Exception { > + Set<? extends NodeMetadata> rebootNodes = > client.rebootNodesMatching(inGroup(group)); > + for (ComputeMetadata node : rebootNodes) { > + assert node.getProviderId() != null : node; > + assert node.getLocation() != null : node;
Please use `assertNotNull` from TestNG and fix indents here --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/419/files#r14141526