示例#1
0
        public void AppendTags()
        {
            var helper  = new SerializerHelper(null);
            var builder = new StringBuilder();

            helper.AppendTags(builder, new string[0]);
            Assert.AreEqual(string.Empty, builder.ToString());

            helper.AppendTags(builder, new[] { "tag1", "tag2" });
            Assert.AreEqual("|#tag1,tag2", builder.ToString());
        }
示例#2
0
        public void AppendTagsWithConstantTags()
        {
            var helper  = new SerializerHelper(new[] { "ctag1", "ctag2" });
            var builder = new StringBuilder();

            helper.AppendTags(builder, new string[0]);
            Assert.AreEqual("|#ctag1,ctag2", builder.ToString());
            builder.Clear();

            helper.AppendTags(builder, new[] { "tag1", "tag2" });
            Assert.AreEqual("|#ctag1,ctag2,tag1,tag2", builder.ToString());
        }