16 references to TestHelpers
Microsoft.VisualBasic.IntegrationTests (16)
InteractionTests.cs (5)
62TestHelpers.SendEnterKeyToProcess(process); 78TestHelpers.SendEnterKeyToProcess(process); 112private static readonly string s_exePath = TestHelpers.GetExePath("VisualBasicRuntimeTest"); 117return TestHelpers.StartProcess(startInfo); 122TestHelpers.EndProcess(process, 1000);
Microsoft\VisualBasic\ApplicationServices\WindowsFormsApplicationBaseTests.cs (8)
14string exePath = TestHelpers.GetExePath("VisualBasicRuntimeTest"); 16Process process = TestHelpers.StartProcess(startInfo); 17TestHelpers.EndProcess(process, timeout: 1000); 24string exePath = TestHelpers.GetExePath("VisualBasicRuntimeTest"); 25Process process0 = TestHelpers.StartProcess(new ProcessStartInfo { FileName = exePath, Arguments = "WindowsFormsApplicationBase.RunSingleInstance0" }); 26Process process1 = TestHelpers.StartProcess(new ProcessStartInfo { FileName = exePath, Arguments = "WindowsFormsApplicationBase.RunSingleInstance1" }); 27TestHelpers.EndProcess(process0, timeout: 1000); 28TestHelpers.EndProcess(process1, timeout: 1000);
Microsoft\VisualBasic\MyServices\Internal\ProgressDialogTests.cs (3)
13string exePath = TestHelpers.GetExePath("VisualBasicRuntimeTest"); 15Process process = TestHelpers.StartProcess(startInfo); 16TestHelpers.EndProcess(process, timeout: 1000);