Ejemplo n.º 1
0
        public async Task CourseDataLock_PriceChanges_IsEmpty()
        {
            //Arrange
            _fixture = new DataLockRequestChangesRequestToViewModelMapperTestsFixture()
                       .WithCourseDataLock(DataLockErrorCode.Dlock04);

            //Act
            await _fixture.Map();

            //Assert
            _fixture.VerifyPriceChangesIsEmpty();
        }
Ejemplo n.º 2
0
        public async Task PriceDataLock_CourseChanges_IsEmpty()
        {
            //Arrange
            _fixture = new DataLockRequestChangesRequestToViewModelMapperTestsFixture()
                       .WithPriceDataLock();

            //Act
            await _fixture.Map();

            //Assert
            _fixture.VerifyCourseChangesIsEmpty();
        }
Ejemplo n.º 3
0
 public void Setup()
 {
     _fixture = new DataLockRequestChangesRequestToViewModelMapperTestsFixture()
                .WithCourseAndPriceDataLock();
 }