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