public void op_GetData_MethodInfo_Types_whenParameterCountMismatch()
        {
            var obj = new XmlFileAttribute("one.xml", "two.xml");

            Assert.Throws <InvalidOperationException>(() => obj.GetData(GetType().GetMethod("usage"), new[] { typeof(XmlDocument) }).ToList());
        }
        public void op_GetData_MethodInfo_TypesNull()
        {
            var obj = new XmlFileAttribute("example.xml");

            Assert.Throws <ArgumentNullException>(() => obj.GetData(GetType().GetMethod("usage"), null).ToList());
        }
        public void op_GetData_MethodInfo_Types_whenInvalidParameterType()
        {
            var obj = new XmlFileAttribute("example.xml");

            Assert.Throws <InvalidOperationException>(() => obj.GetData(GetType().GetMethod("usage"), new[] { typeof(string) }).ToList());
        }
        public void op_GetData_MethodInfoNull_Types()
        {
            var obj = new XmlFileAttribute("example.xml");

            Assert.Throws <ArgumentNullException>(() => obj.GetData(null, new[] { typeof(XmlDocument) }).ToList());
        }
Пример #5
0
        public void op_GetData_MethodInfo_Types_whenParameterCountMismatch()
        {
            var obj = new XmlFileAttribute("one.xml", "two.xml");

            Assert.Throws<InvalidOperationException>(() => obj.GetData(GetType().GetMethod("usage"), new[] { typeof(XmlDocument) }).ToList());
        }
Пример #6
0
        public void op_GetData_MethodInfo_Types_whenInvalidParameterType()
        {
            var obj = new XmlFileAttribute("example.xml");

            Assert.Throws<InvalidOperationException>(() => obj.GetData(GetType().GetMethod("usage"), new[] { typeof(string) }).ToList());
        }
Пример #7
0
        public void op_GetData_MethodInfo_TypesNull()
        {
            var obj = new XmlFileAttribute("example.xml");

            Assert.Throws<ArgumentNullException>(() => obj.GetData(GetType().GetMethod("usage"), null).ToList());
        }
Пример #8
0
        public void op_GetData_MethodInfoNull_Types()
        {
            var obj = new XmlFileAttribute("example.xml");

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