diff --git a/XUnitTest/HashTest.cs b/XUnitTest/HashTest.cs index 88cb531..b0db7e1 100644 --- a/XUnitTest/HashTest.cs +++ b/XUnitTest/HashTest.cs @@ -106,6 +106,12 @@ public class HashTest Assert.NotNull(hash); var l = hash as RedisHash; + + foreach(var item in l.GetAll()) + { + XTrace.WriteLine(item.Key); + } + l["0"] = "0"; } }