public void CanStore()
        {
            var store = new InMemoryCacheStore();

            store.AddOrUpdateAsync(new CacheKey(DummyUrl, new string[0]),
                                   ResponseHelper.GetOkMessage()).Wait();

            var r = store.GetValueAsync(new CacheKey(DummyUrl, new string[0])).Result;

            Assert.NotNull(r);
        }