Skip to content

Instantly share code, notes, and snippets.

@bbody
Last active December 12, 2015 02:48
Show Gist options
  • Save bbody/4701850 to your computer and use it in GitHub Desktop.
Save bbody/4701850 to your computer and use it in GitHub Desktop.
Quick automated GUI example.
[TestMethod]
public void MultiplicationNegativeBoth()
{
this.UIMap.StartApplication();
// Both negative decimal
this.UIMap.NegativePressed();
this.UIMap.FivePressed();
this.UIMap.MultiplicationPressed();
this.UIMap.NegativePressed();
this.UIMap.EightPressed();
this.UIMap.PressEnter();
this.UIMap.CloseApplication();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment