Ejemplo n.º 1
0
        public void PrintMultipleValues()
        {
            var fp = new FillPrint(3);

            Assert.Equal($"{fp[0]}, {fp[1]}, {fp[2]}", fp.Print());
        }
Ejemplo n.º 2
0
        public void PrintsEmptyString()
        {
            var fp = new FillPrint(0);

            Assert.Equal(String.Empty, fp.Print());
        }
Ejemplo n.º 3
0
        public void PrintSingleValue()
        {
            var fp = new FillPrint(1);

            Assert.Equal(fp[0].ToString(), fp.Print());
        }