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

Method which return TRUE if test fits this filter. Otherwise FALSE.
public abstract Fit ( AutomationTest test ) : bool
test AutomationTest
리턴 bool
예제 #1
0
 public override bool Fit(AutomationTest test)
 {
     return(_a.Fit(test) && _b.Fit(test));
 }