Add taskmanager test

This commit is contained in:
parallelbgls
2017-05-24 12:58:03 +08:00
parent c2f3626f73
commit d7d74ee0a1
7 changed files with 191 additions and 0 deletions

View File

@@ -96,5 +96,11 @@ namespace Modbus.Net.Tests
var ans = await _opcMachine.GetDatasAsync(MachineGetDataType.Id);
Assert.AreEqual(ans["1"].PlcValue, 525);
}
[TestCleanup]
public void MachineClean()
{
_opcMachine.Disconnect();
}
}
}