コード例 #1
0
 public void TestGetPrimaryKey3(string expected, string sessionId)
 {
     var s = new SessionKeyFormat(null);
     Assert.AreEqual(expected, s.GetPrimaryKey(sessionId));
 }
コード例 #2
0
 public void TestIsPrimaryKey2(bool expected, string sessionId)
 {
     var s = new SessionKeyFormat(null);
     Assert.AreEqual(expected, s.IsPrimaryKey(sessionId));
 }
コード例 #3
0
 public void TestGetBackupKey(string expected, string sessionId)
 {
     var s = new SessionKeyFormat("testapp");
     Assert.AreEqual(expected, s.GetBackupKey(sessionId));
 }