BB.Caching.Tests.Caching.Memory.StringsTests.SetGetAsync C# (CSharp) Method

SetGetAsync() private method

private SetGetAsync ( ) : void
return void
        public void SetGetAsync()
        {
            Cache.Memory.Strings.SetAsync(KEY, SVALUE).Wait();
            MemoryValue<string> actual = Cache.Memory.Strings.GetAsync<string>(KEY).Result;
            Assert.Equal(SVALUE, actual.Value);
        }