System.Tests.StringTests.Replace_String_String C# (CSharp) Method

Replace_String_String() private method

private Replace_String_String ( string s, string oldValue, string newValue, string expected ) : void
s string
oldValue string
newValue string
expected string
return void
        public static void Replace_String_String(string s, string oldValue, string newValue, string expected)
        {
            Assert.Equal(expected, s.Replace(oldValue, newValue));
        }
StringTests