메소드 | 설명 | |
---|---|---|
AddToXml ( TNode parentNode, bool recursive ) : TNode |
Adds an XML node
|
|
IsExplicitMatch ( ITest test ) : bool |
Determine if a test matches the filter explicitly. That is, it must be a direct match of the test itself or one of it's children.
|
|
Match ( ITest test ) : bool |
Check whether the filter matches a test
|
|
NotFilter ( TestFilter baseFilter ) : System |
Construct a not filter on another filter
|
|
Pass ( ITest test ) : bool |
Determine if a particular test passes the filter criteria. The default implementation checks the test itself, its parents and any descendants. Derived classes may override this method or any of the Match methods to change the behavior of the filter.
|
public AddToXml ( TNode parentNode, bool recursive ) : TNode | ||
parentNode | TNode | Parent node |
recursive | bool | True if recursive |
리턴 | TNode |
public IsExplicitMatch ( ITest test ) : bool | ||
test | ITest | The test to which the filter is applied |
리턴 | bool |
public NotFilter ( TestFilter baseFilter ) : System | ||
baseFilter | TestFilter | The filter to be negated |
리턴 | System |
public Pass ( ITest test ) : bool | ||
test | ITest | The test to which the filter is applied |
리턴 | bool |