Beispiel #1
0
 public void TestExpectedInput()
 {
     var testNode = StaticHelpers.GetNode("<formal>this is a test</formal>");
     _tagHandler = new Formal(testNode);
     Assert.AreEqual("This Is A Test", _tagHandler.ProcessChange());
 }
Beispiel #2
0
 public void TestEmptyInput()
 {
     var testNode = StaticHelpers.GetNode("<formal/>");
     _tagHandler = new Formal(testNode);
     Assert.AreEqual("", _tagHandler.ProcessChange());
 }