public void DeleteKeyTest()
 {
     LocalStorage.SetValue(UnitTestDebugKey, 1010);
     Assert.That(LocalStorage.GetInt(UnitTestDebugKey, 1), Is.EqualTo(1010));
     LocalStorage.DeleteKey(UnitTestDebugKey);
     Assert.That(LocalStorage.GetInt(UnitTestDebugKey, 1), Is.EqualTo(1));
 }
 public void DeleteKeyAndNotSaveFromDiskTest()
 {
     LocalStorage.SetValue(UnitTestDebugKey, 101);
     LocalStorage.Save();
     LocalStorage.DeleteKey(UnitTestDebugKey);
     LocalStorage.Reload();
     Assert.That(LocalStorage.GetInt(UnitTestDebugKey, 1), Is.EqualTo(101));
 }
 public void DeleteKeyIfNotExistTest()
 {
     LocalStorage.DeleteKey(UnitTestDebugKey);
     Assert.That(LocalStorage.GetInt(UnitTestDebugKey, 1), Is.EqualTo(1));
 }