public void GetLargeStringInNodeMemento()
        {
            XmlDocument document = DataMother.GetXmlDocument("CDataTest.xml");
            XmlNode node = document.DocumentElement.FirstChild;

            var memento = new XmlNodeInstanceMemento(node, "Type", "Key");
            Assert.AreEqual("select * from table", memento.GetProperty("bigProp"));
        }