AgileWallaby.Ehcache.Test.EhcacheServerDictionaryTest.Can_Get_And_Set_Values_On_Server C# (CSharp) Method

Can_Get_And_Set_Values_On_Server() private method

private Can_Get_And_Set_Values_On_Server ( ) : void
return void
        public void Can_Get_And_Set_Values_On_Server()
        {
            var dictionary = (IDictionary)new EhcacheServerDictionary(endpoint, "sampleCache1");
            dictionary.Clear();

            dictionary["testKey"] = "testValue";

            Assert.AreEqual("testValue", dictionary["testKey"]);

            dictionary = new EhcacheServerDictionary(endpoint, "sampleCache1");
            Assert.AreEqual("testValue", dictionary["testKey"]);
        }