AddAttachmentAsync() public method

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