public async Task Then_the_page_redirects_to_choose_organisation() { // Act var result = await _sut.Home(_accountId) as RedirectToActionResult; // Assert result.Should().NotBeNull(); result.ActionName.Should().Be("GetChooseOrganisation"); result.ControllerName.Should().Be("ApplyOrganisation"); }