Example #1
0
        //bool CloseNode(String ComName)
        public void Test_CloseNode()
        {
            bool bRetValue;

            Outwriter target = new Outwriter();

            bRetValue = target.CloseNode("Text");
            Assert.IsFalse(bRetValue);
            bRetValue = target.Init("Test_CloseNode");
            Assert.IsTrue(bRetValue);
            bRetValue = target.CloseNode("Text");
            Assert.IsTrue(bRetValue);
        }