Exemplo n.º 1
0
        public void TestNotepadInput()
        {
            NotepadApplication notepad = new NotepadApplication(this.TestContext);
            var input = "Hello";
            //TestContext.WriteLine(input);

            notepad.Input(input);
            notepad.Exit();
        }
Exemplo n.º 2
0
 public void TestNotepadLaunch()
 {
     NotepadApplication notepad = new NotepadApplication();
     notepad.Exit();
 }