GetAttachmentURL() public method

Gets the url of an attachment.
public GetAttachmentURL ( string docFullName, string attachmentName ) : string
docFullName string The full name of the wiki page.
attachmentName string The name of the attachment.
return string
 public void GetAttachmentURLTest()
 {
     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 docFullName = string.Empty; // TODO: Initialize to an appropriate value
     string attachmentName = string.Empty; // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     actual = target.GetAttachmentURL(docFullName, attachmentName);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }