public void IsCommentedXElement_Test()
        {
            XComment commentedXElement = new XComment(TestConstants.TransactionXElem1);

            Assert.IsTrue(commentedXElement.IsCommentedXElement());
        }
        public void IsNotCommentedXElement_Test()
        {
            XComment xc = new XComment("dummy comment");

            Assert.IsFalse(xc.IsCommentedXElement());
        }