C# Class NUnit.Framework.Internal.Filters.AndFilter

Inheritance: TestFilter
ファイルを表示 Open project: nunit/nunit Class Usage Examples

Public Methods

Method Description
AndFilter ( ) : System

Constructs an empty AndFilter

IsExplicitMatch ( ITest test ) : bool

Checks whether the AndFilter is explicit matched by a test.

Match ( ITest test ) : bool

Checks whether the AndFilter is matched by a test

Pass ( ITest test ) : bool

Checks whether the AndFilter is matched by a test

Method Details

AndFilter() public method

Constructs an empty AndFilter
public AndFilter ( ) : System
return System

IsExplicitMatch() public method

Checks whether the AndFilter is explicit matched by a test.
public IsExplicitMatch ( ITest test ) : bool
test ITest The test to be matched
return bool

Match() public method

Checks whether the AndFilter is matched by a test
public Match ( ITest test ) : bool
test ITest The test to be matched
return bool

Pass() public method

Checks whether the AndFilter is matched by a test
public Pass ( ITest test ) : bool
test ITest The test to be matched
return bool