public void TestNullKeyRemove()
		{
			ICache cache = new SysCache();
			Assert.Throws<ArgumentNullException>(() => cache.Remove(null));
		}
示例#2
0
        public void TestNullKeyRemove()
        {
            ICache cache = new SysCache();

            cache.Remove(null);
        }
        public void TestNullKeyRemove()
        {
            ICache cache = new SysCache();

            Assert.Throws <ArgumentNullException>(() => cache.Remove(null));
        }