VisualUIAVerify.Features.AutomationTestsFilter.Fit C# (CSharp) Method

Fit() public abstract method

Method which return TRUE if test fits this filter. Otherwise FALSE.
public abstract Fit ( AutomationTest test ) : bool
test AutomationTest
return bool
        public abstract bool Fit(AutomationTest test);
    }

Usage Example

Exemplo n.º 1
0
 public override bool Fit(AutomationTest test)
 {
     return(_a.Fit(test) && _b.Fit(test));
 }
AutomationTestsFilter