public void GetFilingDateAnnouncementTest() { byte statementNumber = 0; // TODO: Initialize to an appropriate value string electionCycle = string.Empty; // TODO: Initialize to an appropriate value Announcement expected = null; // TODO: Initialize to an appropriate value Announcement actual; actual = AnnouncementsClient.GetFilingDateAnnouncement(statementNumber, electionCycle); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
/// <summary> /// Retrieves a filing date announcement by statement number and election cycle. /// </summary> /// <param name="statementNumber">The filing statement number to search for.</param> /// <param name="electionCycle">The election cycle in which to search.</param> /// <returns>The announcement matching the filing statement number and election cycle specified if found; otherwise, null.</returns> public Announcement GetFilingDateAnnouncement(byte statementNumber, string electionCycle) { return(AnnouncementsClient.GetFilingDateAnnouncement(statementNumber, electionCycle)); }