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