示例#1
0
 public async Task Shuold_Get_User_Return_Ok()
 {
     await WithUnitOfWorkAsync(async() =>
     {
         var result = await _userDapperRepository.GetAllUserNameListAsync();
         result.Count.ShouldBe(1);
     });
 }
        public async Task Should_Dapper_Query_User()
        {
            var result = await _userDapperRepository.GetAllUserNameListAsync();

            result.Count.ShouldBe(1);
        }