@@ -32,7 +32,7 @@ import { TestRunArguments } from "./TestRunArguments";
32
32
import { TemporaryFolder } from "../utilities/tempFolder" ;
33
33
import { TestClass , runnableTag , upsertTestItem } from "./TestDiscovery" ;
34
34
import { TestCoverage } from "../coverage/LcovResults" ;
35
- import { DebugConfigurationFactory } from "../debugger/buildConfig" ;
35
+ import { TestingDebugConfigurationFactory } from "../debugger/buildConfig" ;
36
36
37
37
/** Workspace Folder events */
38
38
export enum TestKind {
@@ -370,7 +370,7 @@ export class TestRunner {
370
370
await execFile ( "mkfifo" , [ fifoPipePath ] , undefined , this . folderContext ) ;
371
371
}
372
372
373
- const testBuildConfig = DebugConfigurationFactory . swiftTestingConfig (
373
+ const testBuildConfig = TestingDebugConfigurationFactory . swiftTestingConfig (
374
374
this . folderContext ,
375
375
fifoPipePath ,
376
376
testKind ,
@@ -411,7 +411,7 @@ export class TestRunner {
411
411
}
412
412
413
413
if ( this . testArgs . hasXCTests ) {
414
- const testBuildConfig = DebugConfigurationFactory . xcTestConfig (
414
+ const testBuildConfig = TestingDebugConfigurationFactory . xcTestConfig (
415
415
this . folderContext ,
416
416
testKind ,
417
417
this . testArgs . xcTestArgs ,
@@ -633,7 +633,7 @@ export class TestRunner {
633
633
}
634
634
635
635
if ( this . testArgs . hasSwiftTestingTests ) {
636
- const swiftTestBuildConfig = DebugConfigurationFactory . swiftTestingConfig (
636
+ const swiftTestBuildConfig = TestingDebugConfigurationFactory . swiftTestingConfig (
637
637
this . folderContext ,
638
638
fifoPipePath ,
639
639
TestKind . debug ,
@@ -670,7 +670,7 @@ export class TestRunner {
670
670
671
671
// create launch config for testing
672
672
if ( this . testArgs . hasXCTests ) {
673
- const xcTestBuildConfig = DebugConfigurationFactory . xcTestConfig (
673
+ const xcTestBuildConfig = TestingDebugConfigurationFactory . xcTestConfig (
674
674
this . folderContext ,
675
675
TestKind . debug ,
676
676
this . testArgs . xcTestArgs ,
0 commit comments