private void InitializeVsTestConsole() { var testBinariesPath = _projectInfo.GetTestBinariesPath(); if (!_fileSystem.File.Exists(testBinariesPath)) { throw new ApplicationException($"The test project binaries could not be found at {testBinariesPath}, exiting..."); } var testBinariesLocation = Path.GetDirectoryName(testBinariesPath); _sources = new List <string>() { FilePathUtils.NormalizePathSeparators(testBinariesPath) }; try { _vsTestConsole.StartSession(); _vsTestConsole.InitializeExtensions(new List <string> { testBinariesLocation, _vsTestHelper.GetDefaultVsTestExtensionsPath(_vsTestHelper.GetCurrentPlatformVsTestToolPath()) }); } catch (Exception e) { throw new ApplicationException("Stryker failed to connect to vstest.console", e); } _discoveredTests = DiscoverTests(); }
private void InitializeVsTestConsole() { var testBinariesPath = _projectInfo.GetTestBinariesPath(); if (!_fileSystem.File.Exists(testBinariesPath)) { throw new ApplicationException($"The test project binaries could not be found at {testBinariesPath}, exiting..."); } var testBinariesLocation = Path.GetDirectoryName(testBinariesPath); _sources = new List <string>() { FilePathUtils.NormalizePathSeparators(testBinariesPath) }; try { // Set roll forward on no candidate fx so vstest console can start on incompatible dotnet core runtimes Environment.SetEnvironmentVariable("DOTNET_ROLL_FORWARD_ON_NO_CANDIDATE_FX", "2"); _vsTestConsole.StartSession(); _vsTestConsole.InitializeExtensions(new List <string> { testBinariesLocation, _vsTestHelper.GetDefaultVsTestExtensionsPath(_vsTestHelper.GetCurrentPlatformVsTestToolPath()) }); } catch (Exception e) { throw new ApplicationException("Stryker failed to connect to vstest.console", e); } _discoveredTests = DiscoverTests(); }
private void InitializeVsTestConsole() { var testBinariesPaths = _projectInfo.TestProjectAnalyzerResults.Select(testProject => _projectInfo.GetTestBinariesPath(testProject)).ToList(); var testBinariesLocations = new List <string>(); _sources = new List <string>(); foreach (var path in testBinariesPaths) { if (!_fileSystem.File.Exists(path)) { throw new GeneralStrykerException($"The test project binaries could not be found at {path}, exiting..."); } testBinariesLocations.Add(Path.GetDirectoryName(path)); _sources.Add(FilePathUtils.NormalizePathSeparators(path)); } testBinariesLocations.Add(_vsTestHelper.GetDefaultVsTestExtensionsPath(_vsTestHelper.GetCurrentPlatformVsTestToolPath())); try { // Set roll forward on no candidate fx so vstest console can start on incompatible dotnet core runtimes Environment.SetEnvironmentVariable("DOTNET_ROLL_FORWARD_ON_NO_CANDIDATE_FX", "2"); _vsTestConsole.StartSession(); _vsTestConsole.InitializeExtensions(testBinariesLocations); } catch (Exception e) { throw new GeneralStrykerException("Stryker failed to connect to vstest.console", e); } _discoveredTests = DiscoverTests(); }
private void InitializeVsTestConsole() { var testBinariesPath = FilePathUtils.ConvertPathSeparators(Path.Combine(_options.BasePath, "bin", "Debug", _projectInfo.TargetFramework)); _sources = new List <string>() { FilePathUtils.ConvertPathSeparators(Path.Combine(testBinariesPath, _projectInfo.TestProjectFileName.Replace("csproj", "dll"))) }; _vsTestConsole.StartSession(); _vsTestConsole.InitializeExtensions(new List <string> { testBinariesPath, _vsTestHelper.GetDefaultVsTestExtensionsPath(_vsTestHelper.GetCurrentPlatformVsTestToolPath()) }); }