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.

32 lines
851 B

11 months ago
11 months ago
  1. using Shentun.Pacs.Items;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using Volo.Abp.Uow;
  8. using Xunit;
  9. using Xunit.Abstractions;
  10. namespace Shentun.Pacs
  11. {
  12. public class EntityHelperTest : PeisDomainTestBase
  13. {
  14. private readonly ITestOutputHelper _output;
  15. private readonly IUnitOfWorkManager _unitOfWorkManager;
  16. public EntityHelperTest(ITestOutputHelper output)
  17. {
  18. _output = output;
  19. _unitOfWorkManager = GetRequiredService<IUnitOfWorkManager>();
  20. }
  21. [Fact]
  22. public async Task GetUserNameFromCache()
  23. {
  24. //var userName = await EntityHelper.GetUserNameFromCache(new Guid("3a0c654b-a28c-88da-80b7-d5330710ac50"));
  25. //_output.WriteLine(userName);
  26. }
  27. }
  28. }