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));
 }