Inheritance: MonoBehaviour
 public void ThenIShouldSeePresentedInTheYouPressedField(string resultText)
 {
     Assert.AreEqual(resultText, KeyPresses.ReadResult());
 }
Esempio n. 2
0
 public void SendKeyPress(Keys key)
 {
     LastKeyPress = key;
     KeyPresses.Add(key);
 }
 public void WhenIPress(string button)
 {
     KeyPresses.PressButton(button);
 }