You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							51 lines
						
					
					
						
							1.4 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							51 lines
						
					
					
						
							1.4 KiB
						
					
					
				
								using Microsoft.EntityFrameworkCore;
							 | 
						|
								using Shentun.Peis.GuideTypes;
							 | 
						|
								using Shentun.Peis.Models;
							 | 
						|
								using Shentun.Peis.Sexs;
							 | 
						|
								using Shouldly;
							 | 
						|
								using System;
							 | 
						|
								using System.Collections.Generic;
							 | 
						|
								using System.Linq;
							 | 
						|
								using System.Text;
							 | 
						|
								using System.Threading.Tasks;
							 | 
						|
								using Volo.Abp.Application.Dtos;
							 | 
						|
								using Volo.Abp.Domain.Repositories;
							 | 
						|
								using Volo.Abp.Uow;
							 | 
						|
								using Xunit;
							 | 
						|
								using Xunit.Abstractions;
							 | 
						|
								
							 | 
						|
								namespace Shentun.Peis
							 | 
						|
								{
							 | 
						|
								    public class SexAppServiceTest:PeisApplicationTestBase
							 | 
						|
								    {
							 | 
						|
								        private readonly IRepository<Sex> _repository;
							 | 
						|
								        private readonly SexAppService _appService;
							 | 
						|
								        private readonly ITestOutputHelper _output;
							 | 
						|
								        private readonly IUnitOfWorkManager _unitOfWorkManager;
							 | 
						|
								        public SexAppServiceTest(ITestOutputHelper testOutputHelper)
							 | 
						|
								        {
							 | 
						|
								            _output = testOutputHelper;
							 | 
						|
								            _unitOfWorkManager = GetRequiredService<IUnitOfWorkManager>();
							 | 
						|
								            _repository = GetRequiredService<IRepository<Sex>>();
							 | 
						|
								            _appService = GetRequiredService<SexAppService>();
							 | 
						|
								        }
							 | 
						|
								        [Fact]
							 | 
						|
								        public async Task UpdateAsync()
							 | 
						|
								        {
							 | 
						|
								            var dto = new UpdateSexDto() {
							 | 
						|
								                DisplayName = "未知",
							 | 
						|
								                SimpleCode = "A",
							 | 
						|
								            };
							 | 
						|
								            try
							 | 
						|
								            {
							 | 
						|
								                await _appService.UpdateAsync('U', dto);
							 | 
						|
								            }
							 | 
						|
								            catch (Exception ex)
							 | 
						|
								            {
							 | 
						|
								                _output.WriteLine(ex.ToString());
							 | 
						|
								            }
							 | 
						|
								            
							 | 
						|
								        }
							 | 
						|
								
							 | 
						|
								    }
							 | 
						|
								}
							 |