public void TestApplicantManagerAddFosterApplicant()
        {
            // Arrange
            Applicant fosterApplication = new Applicant()
            {
                ApplicantID    = 999999,
                FirstName      = "Angela",
                LastName       = "Schrute",
                MiddleName     = "Noelle",
                Email          = "*****@*****.**",
                PhoneNumber    = "5709045023",
                AddressLineOne = "12345 Beet Road",
                AddressLineTwo = "Schrute Farms",
                City           = "Scranton",
                State          = "PA",
                Zipcode        = "18447",
                Foster         = true
            };

            // Arrange
            bool successfulAdd  = false;
            bool expectedResult = true;

            // Act
            successfulAdd = _applicantManager.AddFosterApplicant(fosterApplication);

            // Assert
            Assert.AreEqual(expectedResult, successfulAdd);
        }// End TestApplicantManagerAddFosterApplicant()