SavePageHTML() public method

Saves the content of the page in the specified syntax.
public SavePageHTML ( string docName, string content, string syntax ) : bool
docName string The full name of the page.
content string The html content to be converted.
syntax string The syntax in wich the html code will be converted.
return bool
 public void SavePageHTMLTest()
 {
     string serverURL = string.Empty; // TODO: Initialize to an appropriate value
     string username = string.Empty; // TODO: Initialize to an appropriate value
     string password = string.Empty; // TODO: Initialize to an appropriate value
     XWikiHTTPClient target = new XWikiHTTPClient(serverURL, username, password); // TODO: Initialize to an appropriate value
     string docName = string.Empty; // TODO: Initialize to an appropriate value
     string content = string.Empty; // TODO: Initialize to an appropriate value
     string syntax = string.Empty; // TODO: Initialize to an appropriate value
     bool expected = false; // TODO: Initialize to an appropriate value
     bool actual;
     actual = target.SavePageHTML(docName, content, syntax);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }