19 references to IntegrationHelper
Microsoft.VisualStudio.IntegrationTest.Utilities (19)
AutomationElementHelper.cs (1)
53await IntegrationHelper.WaitForResultAsync(
InProcess\SolutionExplorer_InProc.cs (3)
116var solutionPath = IntegrationHelper.CreateTemporaryPath(); 118IntegrationHelper.DeleteDirectoryRecursively(solutionPath); 323IntegrationHelper.TryDeleteDirectoryRecursively(directoryToDelete);
InProcess\VisualStudio_InProc.cs (2)
61if (IntegrationHelper.TrySetForegroundWindow(activeVisualStudioWindow)) 67if (!IntegrationHelper.TrySetForegroundWindow(activeVisualStudioWindow))
Input\AbstractSendKeys.cs (1)
210IntegrationHelper.SendInput(inputs);
TemporaryTextFile.cs (3)
23_path = IntegrationHelper.CreateTemporaryPath(); 29IntegrationHelper.CreateDirectory(_path, deleteExisting: true); 42IntegrationHelper.DeleteDirectoryRecursively(_path);
VisualStudioInstance.cs (2)
256var dte = IntegrationHelper.TryLocateDteForProcess(process); 271IntegrationHelper.KillProcess(HostProcess);
VisualStudioInstanceFactory.cs (7)
184dte = await IntegrationHelper.WaitForNotNullAsync(() => IntegrationHelper.TryLocateDteForProcess(hostProcess)).ConfigureAwait(true); 198dte = await IntegrationHelper.WaitForNotNullAsync(() => IntegrationHelper.TryLocateDteForProcess(hostProcess)).ConfigureAwait(true); 378IntegrationHelper.KillProcess("DbgCLR"); 379IntegrationHelper.KillProcess("VsJITDebugger"); 380IntegrationHelper.KillProcess("dexplore");