public static void XmlDataDocument_GetElementById()
        {
            XmlDataDocument doc = new XmlDataDocument();

            Assert.Throws <NotSupportedException>(() => doc.GetElementById("elemId"));
        }