Exemplo n.º 1
0
        public void GetHashcode()
        {
            string str = "hello";
            CacheObject <string> cacheObject = new CacheObject <string>(str);

            Assert.AreEqual(str.GetHashCode(), cacheObject.GetHashCode());
        }