public void testOutputViaOutputStringWithNoInputString()
 {
     this.mockObject = new mockTextTransformer(this.mockBot);
     Assert.AreEqual(string.Empty, this.mockObject.OutputString);
 }
 public void testOutputViaTransformWithArgsEmptyInput()
 {
     this.mockObject = new mockTextTransformer(this.mockBot);
     Assert.AreEqual(string.Empty, this.mockObject.Transform(""));
 }
 public void testOutputViaOutputString()
 {
     this.mockObject = new mockTextTransformer(this.mockBot, this.inputString);
     Assert.AreEqual(this.outputString, this.mockObject.OutputString);
 }
 public void testInputAttributeChangesProperly()
 {
     this.mockObject             = new mockTextTransformer(this.mockBot, this.inputString);
     this.mockObject.InputString = "Testing123";
     Assert.AreEqual("Testing123", this.mockObject.InputString);
 }
 public void testOutputViaTransformWithArgs()
 {
     this.mockObject = new mockTextTransformer(this.mockBot);
     Assert.AreEqual(this.outputString, this.mockObject.Transform(this.inputString));
 }
 public void testTextTransformerWithDefaultCtor()
 {
     this.mockObject = new mockTextTransformer(this.mockBot);
     Assert.AreEqual(string.Empty, this.mockObject.InputString);
 }
 public void testTextTransformerWithInputPassedToCtor()
 {
     this.mockObject = new mockTextTransformer(this.mockBot, this.inputString);
     Assert.AreEqual(this.inputString, this.mockObject.InputString);
 }
 public void testOutputViaOutputString()
 {
     this.mockObject = new mockTextTransformer(this.mockBot,this.inputString);
     Assert.AreEqual(this.outputString, this.mockObject.OutputString);
 }
 public void testOutputViaOutputStringWithNoInputString()
 {
     this.mockObject = new mockTextTransformer(this.mockBot);
     Assert.AreEqual(string.Empty, this.mockObject.OutputString);
 }
 public void testOutputViaTransformWithArgsEmptyInput()
 {
     this.mockObject = new mockTextTransformer(this.mockBot);
     Assert.AreEqual(string.Empty,this.mockObject.Transform(""));
 }
 public void testOutputViaTransformWithArgs()
 {
     this.mockObject = new mockTextTransformer(this.mockBot);
     Assert.AreEqual(this.outputString, this.mockObject.Transform(this.inputString));
 }
 public void testInputAttributeChangesProperly()
 {
     this.mockObject = new mockTextTransformer(this.mockBot,this.inputString);
     this.mockObject.InputString = "Testing123";
     Assert.AreEqual("Testing123", this.mockObject.InputString);
 }
 public void testTextTransformerWithInputPassedToCtor()
 {
     this.mockObject = new mockTextTransformer(this.mockBot,this.inputString);
     Assert.AreEqual(this.inputString, this.mockObject.InputString);
 }
 public void testTextTransformerWithDefaultCtor()
 {
     this.mockObject = new mockTextTransformer(this.mockBot);
     Assert.AreEqual(string.Empty, this.mockObject.InputString);
 }