mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
30 lines
579 B
Kotlin
30 lines
579 B
Kotlin
package com.intellij.codeInspection.tests.kotlin
|
|
|
|
import com.intellij.jvm.analysis.internal.testFramework.SameParameterValueInspectionTestBase
|
|
|
|
class KotlinSameParameterValueLocalInspectionTest : SameParameterValueInspectionTestBase(true) {
|
|
fun testEntryPoint() {
|
|
doHighlightTest(runDeadCodeFirst = true)
|
|
}
|
|
|
|
fun testMethodWithSuper() {
|
|
doHighlightTest()
|
|
}
|
|
|
|
fun testVarargs() {
|
|
doHighlightTest()
|
|
}
|
|
|
|
fun testNamedArg() {
|
|
doHighlightTest()
|
|
}
|
|
|
|
fun testNegativeDouble() {
|
|
doHighlightTest()
|
|
}
|
|
|
|
fun testReceiver() {
|
|
doHighlightTest()
|
|
}
|
|
}
|