public void GetCacheKeyTest() { var articleList = new ArticleList(); string expected = string.Format("{0}|0|0|0|0|True|0|", typeof(ArticleList).AssemblyQualifiedName); string actual = articleList.GetCacheKey(0, 0, 0, 0, true, 0); Assert.AreEqual(expected, actual); }