Ejemplo n.º 1
0
        public void Appends_Part()
        {
            var token = new Token();

            token = token.AppendPart("1").Value;
            token = token.AppendPart("2").Value;
            token = token.AppendPart("3").Value;

            Assert.Equal(token.Parts.Count(), 3);
        }