We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 912bd69 commit 4d5c9f5Copy full SHA for 4d5c9f5
test/Abp.RedisCache.Tests/RedisCacheManager_Test.cs
@@ -32,9 +32,9 @@ public RedisCacheManager_Test()
32
_cache.DefaultSlidingExpireTime.ShouldBe(defaultSlidingExpireTime);
33
}
34
35
- [Theory]
36
- [InlineData("A", 42)]
37
- [InlineData("B", 43)]
+ //[Theory]
+ //[InlineData("A", 42)]
+ //[InlineData("B", 43)]
38
public void Simple_Get_Set_Test(string cacheKey, int cacheValue)
39
{
40
var item = _cache.Get(cacheKey, () => new MyCacheItem { Value = cacheValue });
0 commit comments