@@ -54,36 +54,36 @@ class Setup {
5454 }
5555 }
5656
57- fun setupTestContextIC (hyphenateWithClass : String ): IDETestContext {
57+ fun setupTestContextIC (hyphenateWithClass : String , projectInfoSpec : ProjectInfoSpec = NoProject ): IDETestContext {
5858 return setupTestContext(
5959 " " , IdeProductProvider .IC .copy(
6060 // Intellij Platform UI Platform Build Version -> https://plugins.jetbrains.com/docs/intellij/integration-tests-ui.html
6161// buildNumber = "243.26574.91", //System.getProperty("uiPlatformBuildVersion"),
6262 buildNumber = " 252.23892.409" ,
6363 buildType = BuildType .RELEASE .type
64- )
64+ ), projectInfoSpec
6565 )
6666 }
6767
68- fun setupTestContextUE (hyphenateWithClass : String ): IDETestContext {
68+ fun setupTestContextUE (hyphenateWithClass : String , projectInfoSpec : ProjectInfoSpec = NoProject ): IDETestContext {
6969 return setupTestContext(
7070 " " , IdeProductProvider .IU .copy(
7171 // Intellij Platform UI Platform Build Version -> https://plugins.jetbrains.com/docs/intellij/integration-tests-ui.html
7272// buildNumber = "243.26574.91", //System.getProperty("uiPlatformBuildVersion"),
7373 buildNumber = " 252.23892.409" ,
7474 buildType = BuildType .RELEASE .type
75- )
75+ ), projectInfoSpec
7676 )
7777 }
7878
79- fun setupTestContextWS (hyphenateWithClass : String ): IDETestContext {
79+ fun setupTestContextWS (hyphenateWithClass : String , projectInfoSpec : ProjectInfoSpec = NoProject ): IDETestContext {
8080 return setupTestContext(
8181 " " , IdeProductProvider .WS .copy(
8282 // Intellij Platform UI Platform Build Version -> https://plugins.jetbrains.com/docs/intellij/integration-tests-ui.html
8383// buildNumber = "243.26574.91", //System.getProperty("uiPlatformBuildVersion"),
8484 buildNumber = " 252.23892.411" ,
8585 buildType = BuildType .RELEASE .type
86- )
86+ ), projectInfoSpec
8787 )
8888 }
8989
0 commit comments