public void TestApplicantManagerEditApplicationStatus()
        {
            // Arrange
            ApplicantVM oldApplicant = new ApplicantVM()
            {
                FirstName                 = "Dwight",
                MiddleName                = "Kurt",
                LastName                  = "Schrute",
                Email                     = "*****@*****.**",
                PhoneNumber               = "16415210932",
                AddressLineOne            = "3142 Schrute Farms Road",
                AddressLineTwo            = "",
                City                      = "Scranton",
                State                     = "PA",
                Zipcode                   = "18503",
                Foster                    = false,
                ApplicantStatus           = "Pending Interview",
                ApplicationID             = 100000,
                ApplicationPostion        = "Kennel Cleaner",
                InterviewNotes            = "Applied for Kennel Cleaner, but he wanted to be a Sales Person",
                HomeCheckDate             = null,
                SchoolName                = "Scranton High",
                SchoolCity                = "Scranton",
                SchoolState               = "PA",
                SchoolLevel               = "Diploma",
                ReferenceName             = "Michael Scott",
                ReferenceNameRelationship = "Current Boss",
                ReferenceNamePhoneNumber  = "16415210931",
                ReferenceNameEmail        = "*****@*****.**",
                PreviousWorkName          = "Dunder Mifflin",
                PreviousWorkCity          = "Scranton",
                PreviousWorkState         = "PA",
                PreviousWorkType          = "Sales",
                ApplicantSkills           = "Hard Worker",
                ResumePath                = "scrute_dwight.doc"
            };
            ApplicantVM newApplicant = new ApplicantVM()
            {
                FirstName                 = "Dwight",
                MiddleName                = "Kurt",
                LastName                  = "Schrute",
                Email                     = "*****@*****.**",
                PhoneNumber               = "16415210932",
                AddressLineOne            = "3142 Schrute Farms Road",
                AddressLineTwo            = "",
                City                      = "Scranton",
                State                     = "PA",
                Zipcode                   = "18503",
                Foster                    = false,
                ApplicantStatus           = "Declined",
                ApplicationID             = 100000,
                ApplicationPostion        = "Kennel Cleaner",
                InterviewNotes            = "Applied for Kennel Cleaner, but he wanted to be a Sales Person",
                HomeCheckDate             = null,
                SchoolName                = "Scranton High",
                SchoolCity                = "Scranton",
                SchoolState               = "PA",
                SchoolLevel               = "Diploma",
                ReferenceName             = "Michael Scott",
                ReferenceNameRelationship = "Current Boss",
                ReferenceNamePhoneNumber  = "16415210931",
                ReferenceNameEmail        = "*****@*****.**",
                PreviousWorkName          = "Dunder Mifflin",
                PreviousWorkCity          = "Scranton",
                PreviousWorkState         = "PA",
                PreviousWorkType          = "Sales",
                ApplicantSkills           = "Hard Worker",
                ResumePath                = "scrute_dwight.doc"
            };

            // Act
            bool result = false;

            result = _applicantManager.EditApplicationStatus(oldApplicant.ApplicationID, oldApplicant.ApplicantStatus, newApplicant.ApplicantStatus);

            // Assert
            Assert.AreEqual(true, result);
        }// End TestApplicantManagerEditApplicationStatus()