Exemple #1
0
        public void AlignCenterTest(string input, int width, string expected)
        {
            //arrange

            //act
            string actual = StringHelper.AlignCenter(input, width);

            //assert
            Assert.That(actual, Is.EqualTo(expected));
        }