public void requestTest() { ProcessRequest target = new ProcessRequest(); // TODO: Initialize to an appropriate value string s = string.Empty; // TODO: Initialize to an appropriate value target.request(s); Assert.Inconclusive("A method that does not return a value cannot be verified."); }
public DummyTemplate(string s) { var processRequest = new ProcessRequest(); processRequest.request(s); operationList=processRequest.response(); Render(output); }
public void responseTest() { ProcessRequest target = new ProcessRequest(); // TODO: Initialize to an appropriate value List<Match> expected = null; // TODO: Initialize to an appropriate value List<Match> actual; actual = target.response(); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void ProcessRequestConstructorTest() { ProcessRequest target = new ProcessRequest(); Assert.Inconclusive("TODO: Implement code to verify target"); }