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

LastIndexOf_NullInStrings() private method

private LastIndexOf_NullInStrings ( string s, string value, int expected ) : void
s string
value string
expected int
return void
        public static void LastIndexOf_NullInStrings(string s, string value, int expected)
        {
            Assert.Equal(expected, s.LastIndexOf(value));
        }
StringTests