AddAttachment() public method

Adds an attachment to the wiki.
public AddAttachment ( string docName, string filePath ) : bool
docName string The full name of the wiki page.
filePath string The path to the file to be attached.
return bool
 public void AddAttachmentTest()
 {
     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 space = string.Empty; // TODO: Initialize to an appropriate value
     string page = string.Empty; // TODO: Initialize to an appropriate value
     string filePath = string.Empty; // TODO: Initialize to an appropriate value
     bool expected = false; // TODO: Initialize to an appropriate value
     bool actual;
     actual = target.AddAttachment(space, page, filePath);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }