コード例 #1
0
ファイル: VelocityFixture.cs プロジェクト: debop/NFramework
		public void TestNullValuePut()
		{
			ICache cache = new VelocityClient();
			cache.Put("nunit", null);
		}
コード例 #2
0
ファイル: VelocityFixture.cs プロジェクト: debop/NFramework
		public void TestNullKeyGet()
		{
			ICache cache = new VelocityClient();
			cache.Put("nunit", "value");
			Thread.Sleep(100);
			object item = cache.Get(null);
			Assert.ShouldNotBeNull(item);
		}
コード例 #3
0
ファイル: VelocityFixture.cs プロジェクト: debop/NFramework
		public void TestNullKeyPut()
		{
			ICache cache = new VelocityClient();
			cache.Put(null, null);
		}