public void TestOPCPropertyDataString02() { OPCPropertyData oPCPropertyData = new OPCPropertyData(); oPCPropertyData.Data = 1; oPCPropertyData.Error = 1; oPCPropertyData.PropertyID = 1; oPCPropertyData.ToString(); }
public void TestOPCPropertyDataConstructor01() { OPCPropertyData oPCPropertyData = new OPCPropertyData(); oPCPropertyData.Data = 1; oPCPropertyData.Error = 0; oPCPropertyData.PropertyID = 1; oPCPropertyData.ToString(); }