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
32 lines
851 B
using Shentun.Peis.Items;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.Uow;
|
|
using Xunit;
|
|
using Xunit.Abstractions;
|
|
|
|
namespace Shentun.Peis
|
|
{
|
|
public class EntityHelperTest : PeisDomainTestBase
|
|
{
|
|
|
|
|
|
private readonly ITestOutputHelper _output;
|
|
private readonly IUnitOfWorkManager _unitOfWorkManager;
|
|
|
|
public EntityHelperTest(ITestOutputHelper output)
|
|
{
|
|
_output = output;
|
|
_unitOfWorkManager = GetRequiredService<IUnitOfWorkManager>();
|
|
}
|
|
[Fact]
|
|
public async Task GetUserNameFromCache()
|
|
{
|
|
//var userName = await EntityHelper.GetUserNameFromCache(new Guid("3a0c654b-a28c-88da-80b7-d5330710ac50"));
|
|
//_output.WriteLine(userName);
|
|
}
|
|
}
|
|
}
|