Example #1
0
 public void RenderTest()
 {
     DummyTemplate target = new DummyTemplate(); // TODO: Initialize to an appropriate value
     StringBuilder output = null; // TODO: Initialize to an appropriate value
     target.Render(output);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Example #2
0
 static void Main(string[] args)
 {
     var template = new DummyTemplate(@"<%for(int i=0; i < 5; i++){%>*<%}%>");
 }
Example #3
0
 public void DummyTemplateConstructorTest()
 {
     DummyTemplate target = new DummyTemplate();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }