Ejemplo n.º 1
0
        public void TestOPCPropertyItemString02()
        {
            OPCPropertyItem opcPropertyItem = new OPCPropertyItem();

            opcPropertyItem.Error      = 1;
            opcPropertyItem.newItemID  = "NewID";
            opcPropertyItem.PropertyID = 1;
            //Test Procedure Call
            string result = opcPropertyItem.ToString();
        }
Ejemplo n.º 2
0
        public void TestCreateOPCPropertyItem01()
        {
            OPCPropertyItem oPCPropertyItem = CreateOPCPropertyItem01();

            Assert.IsNotNull(oPCPropertyItem);
        }
Ejemplo n.º 3
0
        public static OPCPropertyItem CreateOPCPropertyItem01()
        {
            OPCPropertyItem oPCPropertyItem = new OPCPropertyItem();

            return(oPCPropertyItem);
        }