AppendIfAssert() public method

Appends an if construct.
public AppendIfAssert ( object testContent, object trueContent, object falseContent ) : void
testContent object The pattern to assert.
trueContent object The pattern to match if the assertion succeeds.
falseContent object The pattern to match if the assertion fails.
return void
Beispiel #1
0
 internal override void AppendTo(PatternBuilder builder)
 {
     builder.AppendIfAssert(_testContent, _trueContent, _falseContent);
 }