use of com.cloud.agent.api.CheckHealthCommand in project cloudstack by apache.
the class LibvirtComputingResourceTest method testCheckHealthCommand.
@Test
public void testCheckHealthCommand() {
final CheckHealthCommand command = new CheckHealthCommand();
final LibvirtRequestWrapper wrapper = LibvirtRequestWrapper.getInstance();
assertNotNull(wrapper);
final Answer answer = wrapper.execute(command, libvirtComputingResource);
assertTrue(answer.getResult());
}
Aggregations