Beispiel #1
0
        public async void Should_Success_Get_Data_By_Id()
        {
            var service = new GarmentLeftoverWarehouseComodityService(GetServiceProvider().Object, _dbContext(GetCurrentMethod()));
            var data    = await _dataUtil(service).GetTestData();

            var Response = await service.ReadByIdAsync(data.Id);

            Assert.NotNull(Response);
        }
Beispiel #2
0
        public async void Should_Success_Get_Data()
        {
            var service = new GarmentLeftoverWarehouseComodityService(GetServiceProvider().Object, _dbContext(GetCurrentMethod()));
            var data    = await _dataUtil(service).GetTestData();

            var Response = service.Read(1, 25, "{}", null, data.Name, "{}");

            Assert.NotEmpty(Response.Data);
        }
Beispiel #3
0
        public async void Should_Success_Create_Data()
        {
            var service = new GarmentLeftoverWarehouseComodityService(GetServiceProvider().Object, _dbContext(GetCurrentMethod()));
            var data    = _dataUtil(service).GetNewData();

            var Response = await service.CreateAsync(data);

            Assert.NotEqual(0, Response);
        }
Beispiel #4
0
        public async void Validate_ViewModel_Duplicate()
        {
            var serviceProvider = GetServiceProvider();

            var service = new GarmentLeftoverWarehouseComodityService(serviceProvider.Object, _dbContext(GetCurrentMethod()));

            serviceProvider.Setup(s => s.GetService(typeof(IGarmentLeftoverWarehouseComodityService)))
            .Returns(service);

            var data = await _dataUtil(service).GetTestData();

            var viewModel = new GarmentLeftoverWarehouseComodityViewModel
            {
                Code = data.Code,
                Name = data.Name,
            };

            var validationContext = new ValidationContext(viewModel, serviceProvider.Object, null);

            var result = viewModel.Validate(validationContext);

            Assert.NotEmpty(result.ToList());
        }
Beispiel #5
0
 public GarmentLeftoverWarehouseComodityDataUtil(GarmentLeftoverWarehouseComodityService service)
 {
     Service = service;
 }
Beispiel #6
0
 private GarmentLeftoverWarehouseComodityDataUtil _dataUtil(GarmentLeftoverWarehouseComodityService service)
 {
     return(new GarmentLeftoverWarehouseComodityDataUtil(service));
 }