コード例 #1
0
		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);
        }
コード例 #3
0
        public void TestNullKeyRemove()
        {
            ICache cache = new SysCache();

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