Exemplo n.º 1
0
        public void GivenForString_WhenGet_ThenStringRetrieved()
        {
            var expected = "someOldValue";

            PlayerPrefs.SetString(TestKey, expected);

            var actual = PowerPrefs.ForString().Get(TestKey, "");

            Assert.That(actual, Is.EqualTo(expected));
        }
Exemplo n.º 2
0
        public void GivenForString_WhenSet_ThenStringStored()
        {
            var expected = "someNewValue";

            PlayerPrefs.SetString(TestKey, "someOldValue");

            PowerPrefs.ForString().Set(TestKey, expected);

            Assert.That(PlayerPrefs.GetString(TestKey, ""), Is.EqualTo(expected));
        }
Exemplo n.º 3
0
 public void InputValueChanged(string input)
 {
     PowerPrefs.ForString().Set(KeyInput, input);
 }
Exemplo n.º 4
0
        void Awake()
        {
            var inputValue = PowerPrefs.ForString().Get(KeyInput, "Default");

            inputField.text = inputValue;
        }