public void Verify() { var t = new LocalCommandLineTask("ping"); t.Args = "localhost"; var r = t.VerifyCanRun(); var vi = new DeploymentItem(DeploymentItemStatus.Good, ""); Assert.AreEqual(1, r.Results.Count); //Assert.Contains(vi, r.Results); }
public override DeploymentResult VerifyCanRun() { return(_task.VerifyCanRun()); }