File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
src/test/kotlin/com/intellij/plugin/powershell/lang Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ dependencies {
75
75
implementation(libs.lsp4j)
76
76
testImplementation(" org.jetbrains.kotlin:kotlin-test-junit" )
77
77
testImplementation(libs.junit)
78
+ testImplementation(libs.openTest4J)
78
79
79
80
psScriptAnalyzer(
80
81
group = " PSScriptAnalyzer" ,
Original file line number Diff line number Diff line change 1
1
[versions ]
2
- intellij = " 2023 .2"
2
+ intellij = " 2024 .2"
3
3
intellijPreview = " 242.20224-EAP-CANDIDATE-SNAPSHOT"
4
4
junixsocket = " 2.10.0"
5
5
@@ -9,6 +9,7 @@ junit = "junit:junit:4.13.2"
9
9
junixsocket-common = { module = " com.kohlschutter.junixsocket:junixsocket-common" , version.ref = " junixsocket" }
10
10
junixsocket-native-common = { module = " com.kohlschutter.junixsocket:junixsocket-native-common" , version.ref = " junixsocket" }
11
11
lsp4j = " org.eclipse.lsp4j:org.eclipse.lsp4j:0.23.1"
12
+ openTest4J = " org.opentest4j:opentest4j:1.3.0"
12
13
13
14
[bundles ]
14
15
junixsocket = [" junixsocket-common" , " junixsocket-native-common" ]
Original file line number Diff line number Diff line change @@ -9,11 +9,10 @@ class PowerShellLexerTest : LexerTestCase() {
9
9
return PowerShellLexerAdapter ()
10
10
}
11
11
12
- override fun getDirPath (): String? {
13
- return null
12
+ override fun getDirPath (): String {
13
+ error( " Should not be called. " )
14
14
}
15
15
16
-
17
16
fun testLineComment () {
18
17
doTest(" hello#world" , " SIMPLE_ID ('hello#world')" )
19
18
doTest(
You can’t perform that action at this time.
0 commit comments