public void GetKeyPart_NumberMustNamed(string part)
        {
            var ag   = new ValueConfigurationVisitor(new string[0]);
            var type = ag.GetPartType(part);

            Assert.AreEqual(ConfigurationPartTypes.Named, type);
        }
        public void GetKeyPart_NumberMustArrayIndex(string part)
        {
            var set = new string[0];
            var ag  = new ValueConfigurationVisitor(set);

            Assert.AreEqual(set, ag.Parts);
            var type = ag.GetPartType(part);

            Assert.AreEqual(ConfigurationPartTypes.ArrayIndex, type);
        }