public void TestApplicantManagerRetrieveApplicantByID()
        {
            // Arrange
            int       applicantID = 100000;
            Applicant applicant   = null;
            int       result      = 0;

            // Act
            applicant = _applicantManager.RetrieveApplicantByID(applicantID);
            if (applicant != null)
            {
                result = 1;
            }

            // Assert
            Assert.AreEqual(1, result);
        }// End TestApplicantManagerRetrieveApplicantByID()