NUnit.Framework.Internal.Filters.MethodNameFilter.Match C# (CSharp) Method

Match() public method

Match a test against a single value.
public Match ( ITest test ) : bool
test ITest
return bool
        public override bool Match(ITest test)
        {
            return Match(test.MethodName);
        }