public void CanSaveNewApplicant_ExpectSuccess()
        {
            //Arrange
            string firstName  = "David_1";
            string middleName = "Michael";
            string lastname   = "OBrien";

            IUnitOfWork          context    = new BackgroundCheckContext();
            IApplicantRepository repository = new EFApplicantRepository(context);
            var       applicant             = DomainHelper.CreateApplicant(firstName, middleName, lastname);
            Applicant savedApplicant        = null;

            //Act
            try
            {
                repository.Save(applicant);
                context.Commit();
                savedApplicant = repository.FindBy(a => a.FirstName == applicant.FirstName).FirstOrDefault();
            }
            catch (Exception ex)
            {
                System.Diagnostics.Debug.Write(ex.Message);
                System.Diagnostics.Debug.Write(ex.StackTrace);
            }

            //Assert
            Assert.IsNotNull(savedApplicant);
            Assert.AreEqual(savedApplicant.FirstName, firstName);
            Assert.AreEqual(savedApplicant.MiddleName, middleName);
            Assert.AreEqual(savedApplicant.LastName, lastname);
        }
        public void CanSaveApplicantEducationHistory__ExpectSuccess()
        {
            //Arrange
            string firstName           = "David_3";
            string middleName          = "Michael";
            string lastname            = "OBrien";
            string firstRecordAddress  = "377 Colborne Street";
            string secondRecordAddress = "661 Ivy Falls Court";

            IUnitOfWork          context    = new BackgroundCheckContext();
            IApplicantRepository repository = new EFApplicantRepository(context);
            var       applicant             = DomainHelper.CreateApplicant(firstName, middleName, lastname);
            Applicant savedApplicant        = null;

            applicant.AddressHistory.Add(new AddressHistory
            {
                Address1 = firstRecordAddress,
                Address2 = "",
                City     = "Saint Paul",
                State    = "MN",
                Zip      = "55102",
                FromDate = "2003/10/31",
                ToDate   = "Current"
            });

            applicant.AddressHistory.Add(new AddressHistory
            {
                Address1 = secondRecordAddress,
                Address2 = "",
                City     = "Mendota Heights",
                State    = "MN",
                Zip      = "55118",
                FromDate = "2000/4/5",
                ToDate   = "2003/10/31"
            });

            try
            {
                //Act
                repository.Save(applicant);
                context.Commit();
                savedApplicant = repository.FindBy(a => a.FirstName == firstName).FirstOrDefault();
            }
            catch (Exception ex)
            {
                System.Diagnostics.Debug.Write(ex.Message);
                System.Diagnostics.Debug.Write(ex.StackTrace);
            }

            //Assert
            Assert.IsNotNull(savedApplicant);
            Assert.AreEqual(savedApplicant.AddressHistory.Count, 2);
            Assert.AreEqual(savedApplicant.AddressHistory[0].Address1, firstRecordAddress);
            Assert.AreEqual(savedApplicant.AddressHistory[1].Address1, secondRecordAddress);
        }
        public void CanSaveApplicantEmploymentHistory_ExpectSuccess()
        {
            //Arrange
            string firstName    = "David_2";
            string middleName   = "Michael";
            string lastname     = "OBrien";
            string employerName = "Benesyst2";
            string jobTitle     = "Programmer";

            IUnitOfWork          context    = new BackgroundCheckContext();
            IApplicantRepository repository = new EFApplicantRepository(context);
            var       applicant             = DomainHelper.CreateApplicant(firstName, middleName, lastname);
            Applicant savedApplicant        = null;

            applicant.EmploymentHistory.Add(
                new EmploymentHistory
            {
                EmployerName = employerName,
                JobTitle     = jobTitle,
                Salary       = 110000,
                StartDate    = new DateTime(2005, 2, 5),
                EndDate      = new DateTime(2006, 6, 5)
            });

            try
            {
                //Act
                repository.Save(applicant);
                context.Commit();
                savedApplicant = repository.FindBy(a => a.FirstName == firstName).FirstOrDefault();
            }
            catch (Exception ex)
            {
                System.Diagnostics.Debug.Write(ex.Message);
                System.Diagnostics.Debug.Write(ex.StackTrace);
            }

            //Assert
            Assert.IsNotNull(savedApplicant);
            Assert.AreEqual(applicant.EmploymentHistory.Count, 1);
            Assert.AreEqual(applicant.EmploymentHistory[0].EmployerName, employerName);
            Assert.AreEqual(applicant.EmploymentHistory[0].JobTitle, jobTitle);
        }
        public void CanSaveApplicantWithAllHistoriesPopulated_ExpectSuccess()
        {
            //Arrange
            string firstName  = "David_X";
            string middleName = "Michael";
            string lastname   = "OBrien";

            IUnitOfWork          context    = new BackgroundCheckContext();
            IApplicantRepository repository = new EFApplicantRepository(context);
            var applicant = DomainHelper.CreateApplicant(firstName, middleName, lastname);

            DomainHelper.AddAddressHistory(applicant, 2);
            DomainHelper.AddEducationHistory(applicant, 3);
            DomainHelper.AddEmploymentHistory(applicant, 3);

            //Act
            try
            {
                repository.Save(applicant);
                context.Commit();
            }
            catch (Exception ex)
            {
                System.Diagnostics.Debug.Write(ex.Message);
                System.Diagnostics.Debug.Write(ex.StackTrace);
            }

            Applicant savedApplicant = repository.FindBy(a => a.FirstName == firstName).FirstOrDefault();

            //Assert NOTE: I am not testing too much here as I've run out of time. Will compare
            //built up domain object with saved object soon
            Assert.IsNotNull(savedApplicant);
            Assert.AreEqual(savedApplicant.FirstName, firstName);
            Assert.AreEqual(savedApplicant.MiddleName, middleName);
            Assert.AreEqual(savedApplicant.LastName, lastname);
        }