Adf.Test.TestProvider.FindItems C# (CSharp) Method

FindItems() public method

public FindItems ( TestItemType type, TestAction action ) : IEnumerable
type Adf.Core.Test.TestItemType
action Adf.Core.Test.TestAction
return IEnumerable
        public virtual IEnumerable<TestItem> FindItems(TestItemType type, TestAction action)
        {
            return _items
               .Where(item => item.Type == type)
               .Where(item => item.Action == action);
        }

Same methods

TestProvider::FindItems ( TestItemType type, object subject, TestAction action ) : IEnumerable