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

Inheritance: TestFilter
Exibir arquivo Open project: nunit/nunit

Public Methods

Method Description
AddToXml ( TNode parentNode, bool recursive ) : TNode

Adds an XML node

ValueMatchFilter ( string expectedValue ) : System

Construct a ValueMatchFilter for a single value.

Protected Methods

Method Description
Match ( string input ) : bool

Match the input provided by the derived class

Method Details

AddToXml() public method

Adds an XML node
public AddToXml ( TNode parentNode, bool recursive ) : TNode
parentNode TNode Parent node
recursive bool True if recursive
return TNode

Match() protected method

Match the input provided by the derived class
protected Match ( string input ) : bool
input string The value to be matchedT
return bool

ValueMatchFilter() public method

Construct a ValueMatchFilter for a single value.
public ValueMatchFilter ( string expectedValue ) : System
expectedValue string The value to be included.
return System