public async Task ShowGotoHomePageOptionIsMappedCorrectly(bool isAgreementSigned, bool isEmployerComplete, bool expected)
        {
            var fixture = new DetailsViewModelMapperTestsFixture();

            fixture.SetIsAgreementSigned(isAgreementSigned);
            fixture.SetEmployerComplete(isEmployerComplete);
            var result = await fixture.Map();

            Assert.AreEqual(expected, result.ShowGotoHomePageOption);
        }