Automation.UI.Tree.Matchers.EndsWithMatcher.IsMatch C# (CSharp) Méthode

IsMatch() public méthode

Checks to see if the actual value ends with the specified expected value.
public IsMatch ( string actual, string expected ) : bool
actual string The actual value.
expected string The expected start value.
Résultat bool
        public override bool IsMatch(string actual, string expected)
        {
            WriteTrace(actual, expected);

            return actual.EndsWith(expected);
        }
EndsWithMatcher