public void GetElement_IllegalNodePath()
        {
            IQuillConfig target = QuillConfigImpl.Load("Config/Impl/Files/QuillConfigImplTest.xml");
            var          actual = target.GetElement("");

            Assert.IsNull(actual);
        }
        public void GetElement_IllegalNodePath()
        {
            IQuillConfig target = QuillAppConfig.Load();
            var          actual = target.GetElement("");

            Assert.IsNull(actual);
        }
        public void GetElement_AdditionalFilter()
        {
            IQuillConfig target = QuillConfigImpl.Load("Config/Impl/Files/QuillConfigImplTest.xml");
            var          actual = target.GetElement("At", el => el.GetAttrValue("hogeAttr") == "wao");

            Assert.NotNull(actual);
            Assert.AreEqual("wao", actual.GetAttrValue("hogeAttr"));
        }
        public void GetElement()
        {
            IQuillConfig target = QuillConfigImpl.Load("Config/Impl/Files/QuillConfigImplTest.xml");
            var          actual = target.GetElement("At");

            Assert.NotNull(actual);
            Assert.AreEqual(typeof(XElement), actual.GetType());
        }
        public void GetElement()
        {
            IQuillConfig target = QuillAppConfig.Load();
            var          actual = target.GetElement("At");

            Assert.NotNull(actual);
            Assert.AreEqual(typeof(XElement), actual.GetType());
        }