"Should get root rp, but got " + rp.getName());
}
@Test(enabled = false)
public void testRunSPOnSingleVMNoVM() {
NodeEntity node = new NodeEntity();
Callable<Void> callable = getCallable();
boolean result = VcVmUtil.runSPOnSingleVM(node, callable);
Assert.assertTrue(result == false, "Should get false, but got " + result);
node.setMoId("vm-001");
result = VcVmUtil.runSPOnSingleVM(node, callable);
Assert.assertTrue(result == false, "Should get false, but got " + result);
MockVcCache.setGetFlag(true);
MockTmScheduler.setResultIsNull(true);