CheckHeaders() public méthode

evaluates the headers passed from webserver and checks whether they can be accepted by tomcat as is. This also converts null headers to empty strings.
public CheckHeaders ( NameValueCollection httpHeaders ) : NameValueCollection
httpHeaders System.Collections.Specialized.NameValueCollection
Résultat System.Collections.Specialized.NameValueCollection
 public void CheckHeadersTest()
 {
     BonCodeAJP13ForwardRequest target = new BonCodeAJP13ForwardRequest(); // TODO: Initialize to an appropriate value
     NameValueCollection httpHeaders = null; // TODO: Initialize to an appropriate value
     NameValueCollection expected = null; // TODO: Initialize to an appropriate value
     NameValueCollection actual;
     actual = target.CheckHeaders(httpHeaders);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }