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.
48 lines
1.6 KiB
48 lines
1.6 KiB
using Shentun.Peis.ChargeRequests;
|
|
using Shentun.Peis.Models;
|
|
using Shentun.Peis.PatientRegisters;
|
|
using Shentun.Peis.SumSummaryReports;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.Domain.Repositories;
|
|
using Volo.Abp.Uow;
|
|
using Xunit;
|
|
using Xunit.Abstractions;
|
|
|
|
namespace Shentun.Peis
|
|
{
|
|
public class SumSummaryReportAppServiceTest : PeisApplicationTestBase
|
|
{
|
|
private readonly IRepository<ChargeRequest, Guid> _repository;
|
|
private readonly SumSummaryReportAppService _appService;
|
|
private readonly ITestOutputHelper _output;
|
|
private readonly IUnitOfWorkManager _unitOfWorkManager;
|
|
public SumSummaryReportAppServiceTest(ITestOutputHelper testOutputHelper)
|
|
{
|
|
_output = testOutputHelper;
|
|
_unitOfWorkManager = GetRequiredService<IUnitOfWorkManager>();
|
|
_repository = GetRequiredService<IRepository<ChargeRequest, Guid>>();
|
|
_appService = GetRequiredService<SumSummaryReportAppService>();
|
|
}
|
|
|
|
[Fact]
|
|
public async Task GetDetailResultsAsync()
|
|
{
|
|
using (var unitOfWork = _unitOfWorkManager.Begin(isTransactional: true))
|
|
{
|
|
|
|
var entity = new PatientRegisterIdInputDto()
|
|
{
|
|
PatientRegisterId = new Guid("3a121795-7f84-9c04-844e-c2338a4241d1"),
|
|
|
|
};
|
|
|
|
var newEntity = await _appService.GetDetailResultsAsync(entity);
|
|
//await unitOfWork.CompleteAsync();
|
|
}
|
|
}
|
|
}
|
|
}
|