public void ThenTheLinkIsPointingToTheConfirmPage()
 {
     _context.ActionResult.LastPageResult
     .Model.Should().BeOfType <YourApprenticeshipDetails>().Which
     .Backlink.Should().Be(Urls.MyApprenticshipPage(_apprenticeshipId));
 }
 public void ThenTheBackLinkIsPointingToTheConfirmPage()
 {
     _context.ActionResult.LastPageResult
     .Model.Should().BeOfType <HowYourApprenticeshipWillBeDeliveredModel>().Which
     .Backlink.Should().Be(Urls.MyApprenticshipPage(_apprenticeshipId));
 }
 public void ThenTheLinkIsPointingToTheConfirmPage()
 {
     _context.ActionResult.LastPageResult
     .Model.Should().BeOfType <RolesAndResponsibilitiesModel>().Which
     .Backlink.Should().Be(Urls.MyApprenticshipPage(_apprenticeshipId));
 }
 public void ThenTheBackLinkIsPointingToTheMyApprenticeshipsPage()
 {
     _context.ActionResult.LastPageResult
     .Model.Should().BeOfType <ConfirmYourTrainingModel>().Which
     .Backlink.Should().Be(Urls.MyApprenticshipPage(_apprenticeshipId));
 }