示例#1
0
        public static IncludeProperties Create(bool ignoreCase = true, char splitChar = ',')
        {
            var includeProperties = new IncludeProperties();

            includeProperties.IgnoreCase = ignoreCase;
            includeProperties.SplitChar  = splitChar;
            return(includeProperties);
        }
        public void SetProperties_NotIgnoreCase_ShouldOk()
        {
            var includeProperties = IncludeProperties.Create(false).SetProperties(true, "A", "b");

            includeProperties.Properties.Log();
            includeProperties.HasProperty("A").ShouldTrue();
            includeProperties.HasProperty("B").ShouldFalse();
            includeProperties.HasProperty("C").ShouldFalse();
        }
        public void Properties_Split_ShouldOk()
        {
            var includeProperties = IncludeProperties.Create(true, '|').SetProperties(true, "A", "b");

            includeProperties.Properties.Log().ShouldEqual("A|b");

            var includeProperties2 = IncludeProperties.Create(true).SetProperties(true, "A", "b");

            includeProperties2.Properties.Log().ShouldEqual("A,b");
        }
        public void SetProperties_Null_ShouldOk()
        {
            var includeProperties = IncludeProperties.Create().SetProperties(true, "A", "b", "", null);

            includeProperties.Properties.Log().ShouldEqual("A,b");
        }