Ejemplo n.º 1
0
        public void ModifyLast_StringInput_ReturnStringWithLastCharacterRepeated(string str, int n, string expected)
        {
            var actual = LastCharacter.ModifyLast(str, n);

            Assert.Equal(expected, actual);
        }