Skip to content

Commit

Permalink
Name change
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisfoster76 committed Apr 20, 2020
1 parent 4754f82 commit 254568c
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ namespace SFA.DAS.ProviderCommitments.Web.UnitTests.Mappers.Apprentice
{
[Parallelizable(ParallelScope.None)]
[TestFixture]
public class InformViewModelMapperTests
public class IChangeEmployerViewModelMapperTests
{
private GetInformPageFixture _fixture;
private IChangeEmployerViewModelMapperTestsFixture _fixture;

[SetUp]
public void SetUp()
{
_fixture = new GetInformPageFixture();
_fixture = new IChangeEmployerViewModelMapperTestsFixture();
}

[Test]
Expand Down Expand Up @@ -159,7 +159,7 @@ public async Task Then_With_ChangeEmployerRequestDetailsViewModel_CurrentStartDa
}
}

internal class GetInformPageFixture : Fixture
internal class IChangeEmployerViewModelMapperTestsFixture : Fixture
{
private readonly ChangeEmployerRequest _changeEmployerRequest;
private readonly IChangeEmployerViewModelMapper _sut;
Expand All @@ -176,7 +176,7 @@ internal class GetInformPageFixture : Fixture
public GetChangeOfPartyRequestsResponse ChangeOfPartyRequests { get; private set; }
public IChangeEmployerViewModel Result { get; private set; }

public GetInformPageFixture()
public IChangeEmployerViewModelMapperTestsFixture()
{
var autoFixture = new Fixture();

Expand Down Expand Up @@ -229,7 +229,7 @@ public GetInformPageFixture()
_sut = new IChangeEmployerViewModelMapper(_commitmentsApiClient.Object);
}

public GetInformPageFixture WithChangeOfPartRequest(ChangeOfPartyRequestStatus? requestStatus)
public IChangeEmployerViewModelMapperTestsFixture WithChangeOfPartRequest(ChangeOfPartyRequestStatus? requestStatus)
{
if (requestStatus.HasValue)
{
Expand Down

0 comments on commit 254568c

Please sign in to comment.