public void op_GetData_MethodInfo_Types_whenParameterCountMismatch()
        {
            var obj = new HtmlUriAttribute("http://www.alan-dean.com/one.html", "http://www.alan-dean.com/two.html");

            Assert.Throws<InvalidOperationException>(() => obj.GetData(GetType().GetMethod("usage"), new[] { typeof(XmlDocument) }).ToList());
        }
        public void op_GetData_MethodInfo_TypesNull()
        {
            var obj = new HtmlUriAttribute("http://www.alan-dean.com/example.html");

            Assert.Throws<ArgumentNullException>(() => obj.GetData(GetType().GetMethod("usage"), null).ToList());
        }
        public void op_GetData_MethodInfo_Types_whenInvalidParameterType()
        {
            var obj = new HtmlUriAttribute("http://www.alan-dean.com/example.html");

            Assert.Throws<InvalidOperationException>(() => obj.GetData(GetType().GetMethod("usage"), new[] { typeof(string) }).ToList());
        }
        public void op_GetData_MethodInfoNull_Types()
        {
            var obj = new HtmlUriAttribute("http://www.alan-dean.com/example.html");

            Assert.Throws<ArgumentNullException>(() => obj.GetData(null, new[] { typeof(XmlDocument) }).ToList());
        }
        public void op_GetData_MethodInfo_Types_whenParameterCountMismatch()
        {
            var obj = new HtmlUriAttribute("http://www.alan-dean.com/one.html", "http://www.alan-dean.com/two.html");

            Assert.Throws <InvalidOperationException>(() => obj.GetData(GetType().GetMethod("usage"), new[] { typeof(XmlDocument) }).ToList());
        }
        public void op_GetData_MethodInfo_Types_whenInvalidParameterType()
        {
            var obj = new HtmlUriAttribute("http://www.alan-dean.com/example.html");

            Assert.Throws <InvalidOperationException>(() => obj.GetData(GetType().GetMethod("usage"), new[] { typeof(string) }).ToList());
        }
        public void op_GetData_MethodInfo_TypesNull()
        {
            var obj = new HtmlUriAttribute("http://www.alan-dean.com/example.html");

            Assert.Throws <ArgumentNullException>(() => obj.GetData(GetType().GetMethod("usage"), null).ToList());
        }
        public void op_GetData_MethodInfoNull_Types()
        {
            var obj = new HtmlUriAttribute("http://www.alan-dean.com/example.html");

            Assert.Throws <ArgumentNullException>(() => obj.GetData(null, new[] { typeof(XmlDocument) }).ToList());
        }