GetDocumentAttachmentList() public method

Gets a list with the attachmets' names of the specified page.
public GetDocumentAttachmentList ( string docFullName ) : List
docFullName string THe full name of the wiki page.
return List
 public void GetDocumentAttachmentListTest()
 {
     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
     List<string> expected = null; // TODO: Initialize to an appropriate value
     List<string> actual;
     actual = target.GetDocumentAttachmentList(docFullName);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }