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."); }
static void Main(string[] args) { var template = new DummyTemplate(@"<%for(int i=0; i < 5; i++){%>*<%}%>"); }
public void DummyTemplateConstructorTest() { DummyTemplate target = new DummyTemplate(); Assert.Inconclusive("TODO: Implement code to verify target"); }