public void Teardown()
 {
     this.moqStringBehavior = null;
     this.target            = null;
 }
 public void Setup()
 {
     this.moqStringBehavior = new Mock <IStringBehavior>();
     this.target            = new AppendingBehavior(this.moqStringBehavior.Object);
 }