Exemplo n.º 1
0
        public void ReverseUsingLinq_ShouldReverseString(string str, string strExpected)
        {
            var result = ReverseString.ReverseUsingLinq(str);

            Assert.Equal(result, strExpected);
        }