public void should_work_remotely_as_well() { var t = new LogOnAsBatchTask(new DeploymentServer("127.0.0.1"), WindowsIdentity.GetCurrent().Name); var r = t.Execute(); r.LogToConsole(); Assert.AreEqual(false, r.ContainsError()); }
public void Execute() { var t = new LogOnAsBatchTask(new DeploymentServer(Environment.MachineName), WindowsIdentity.GetCurrent().Name); var r = t.Execute(); r.LogToConsole(); Assert.AreEqual(false, r.ContainsError()); }
public void Verify() { var t = new LogOnAsBatchTask(new DeploymentServer(Environment.MachineName), WindowsIdentity.GetCurrent().Name); var r = t.VerifyCanRun(); }
public void Verify() { var t = new LogOnAsBatchTask(Environment.MachineName, "test\\reynoldsr"); var r = t.VerifyCanRun(); }
public void Execute() { var t = new LogOnAsBatchTask(Environment.MachineName, "test\\reynoldsr"); var r = t.Execute(); }
public void Execute() { var t = new LogOnAsBatchTask(Environment.MachineName, WindowsIdentity.GetCurrent().Name); var r = t.Execute(); }