示例#1
0
 public void GetCacheKeyTest()
 {
     var forumSource = new ForumSource();
     string expected = string.Format("{0}|0|0|0|", typeof(ForumSource).AssemblyQualifiedName);
     string actual = forumSource.GetCacheKey(0, 0, 0);
     Assert.AreEqual(expected, actual);
 }