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.
26 lines
522 B
26 lines
522 B
using Xunit;
|
|
|
|
namespace Tiobon.Core.Tests
|
|
{
|
|
public class Redis_Should
|
|
{
|
|
DI_Test dI_Test = new DI_Test();
|
|
|
|
public Redis_Should()
|
|
{
|
|
//var container = dI_Test.DICollections();
|
|
//_redisCacheManager = container.Resolve<IRedisCacheManager>();
|
|
|
|
}
|
|
|
|
[Fact]
|
|
public void Connect_Redis_Test()
|
|
{
|
|
|
|
//var redisTiobonCache = _redisCacheManager.Get<object>("Redis.Tiobon");
|
|
|
|
//Assert.Null(redisTiobonCache);
|
|
}
|
|
|
|
}
|
|
}
|
|
|