示例#1
0
 public void TestNullValuePut()
 {
     ICache cache = new NhRedisClient();
     Assert.Throws<ArgumentNullException>(() => cache.Put("nunit", null ));
 }
示例#2
0
 public void TestNullKeyPut()
 {
     ICache cache = new NhRedisClient();
     Assert.Throws<ArgumentNullException>(() => cache.Put(null, null));
 }