public void ShouldRead()
        {
            //given
            var store = new LocalStore();

            //when
            var result = store.Read("key");
            Assert.AreEqual(null, result);
        }
        public void ShouldStore()
        {
            //given
            const string key = "thekey";
            var store = new LocalStore();
            const string channel = "dummy channel string";

            //when
            store.Save(key, channel);

            //then
            var result = store.Read(key);
            Assert.AreEqual(channel, result);
        }