Ejemplo n.º 1
0
		public void TestNullKeyRemove()
		{
			ICache cache = new SysCache();
			Assert.Throws<ArgumentNullException>(() => cache.Remove(null));
		}
Ejemplo n.º 2
0
        public void TestNullKeyRemove()
        {
            ICache cache = new SysCache();

            cache.Remove(null);
        }
Ejemplo n.º 3
0
        public void TestNullKeyRemove()
        {
            ICache cache = new SysCache();

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