VisualUIAVerify.Features.AutomationTestsFilter.Fit C# (CSharp) 메소드

Fit() 공개 추상적인 메소드

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

Usage Example

예제 #1
0
 public override bool Fit(AutomationTest test)
 {
     return(_a.Fit(test) && _b.Fit(test));
 }
AutomationTestsFilter