public void TestOPCPropertyItemString02() { OPCPropertyItem opcPropertyItem = new OPCPropertyItem(); opcPropertyItem.Error = 1; opcPropertyItem.newItemID = "NewID"; opcPropertyItem.PropertyID = 1; //Test Procedure Call string result = opcPropertyItem.ToString(); }
public void TestCreateOPCPropertyItem01() { OPCPropertyItem oPCPropertyItem = CreateOPCPropertyItem01(); Assert.IsNotNull(oPCPropertyItem); }
public static OPCPropertyItem CreateOPCPropertyItem01() { OPCPropertyItem oPCPropertyItem = new OPCPropertyItem(); return(oPCPropertyItem); }