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