public void TestSelectAllApplicants()
        {
            // Arrange
            List <Applicant> selectedApplicants;

            // Act
            selectedApplicants = _applicantManager.RetrieveApplicants();
            // Assert
            Assert.AreEqual(3, selectedApplicants.Count);
        }