Beispiel #1
0
 public void GetCacheKeyTest()
 {
     var index = new Index();
     string expected = string.Format("{0}|0|0|0|0|True|0|", typeof(Index).AssemblyQualifiedName);
     string actual = index.GetCacheKey(0, 0, 0, 0, true, 0);
     Assert.AreEqual(expected, actual);
 }