AppendIfAssert() 공개 메소드

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.
리턴 void
예제 #1
0
 internal override void AppendTo(PatternBuilder builder)
 {
     builder.AppendIfAssert(_testContent, _trueContent, _falseContent);
 }