AWSSDK.Tests.Framework.TestRunner.TestCaseFilter.Pass C# (CSharp) Method

Pass() public method

public Pass ( ITest test ) : bool
test ITest
return bool
            public bool Pass(ITest test)
            {
                if (test.Method == null)
                    return true;

                var testName = test.Name;
                return TestCaseNames.Contains(testName);
            }