Exemplo n.º 1
0
        public void RemoveValue()
        {
            IStore AppStore = new MockStore();
            string key      = "Theme";

            AppStore.RemoveValue(key);
            Assert.IsTrue(AppStore.GetValue(key) == null);
        }