所以我有这个单元测试:
[TestMethod]
public void TestNullString()
{
String expectedTestValue = null;
var uid = Guid.NewGuid().ToString();
redis.Wait(redis.Strings.Set(db, uid, expectedTestValue));
var testValue = redis.Wait(redis.Strings.GetString(db, uid));
Assert.AreEqual(expectedTestValue, testValue);
}
结果是超时。这是应该发生的还是我做错了什么?