diff --git a/idea/src/org/jetbrains/kotlin/idea/testIntegration/KotlinCreateTestIntention.kt b/idea/src/org/jetbrains/kotlin/idea/testIntegration/KotlinCreateTestIntention.kt index 56c669f5704..91bffff6875 100644 --- a/idea/src/org/jetbrains/kotlin/idea/testIntegration/KotlinCreateTestIntention.kt +++ b/idea/src/org/jetbrains/kotlin/idea/testIntegration/KotlinCreateTestIntention.kt @@ -52,10 +52,7 @@ import org.jetbrains.kotlin.psi.psiUtil.startOffset import org.jetbrains.kotlin.utils.addToStdlib.singletonList import java.util.* -class KotlinCreateTestIntention : JetSelfTargetingRangeIntention( - KtClassOrObject::class.java, - CodeInsightBundle.message("intention.create.test") -) { +class KotlinCreateTestIntention : JetSelfTargetingRangeIntention(KtClassOrObject::class.java, "Create test") { override fun applicabilityRange(element: KtClassOrObject): TextRange? { if (element.isLocal()) return null if (element is KtEnumEntry) return null diff --git a/idea/testData/quickfix/abstract/manyImpl.kt b/idea/testData/quickfix/abstract/manyImpl.kt index ed4b121318b..8a1106421b4 100644 --- a/idea/testData/quickfix/abstract/manyImpl.kt +++ b/idea/testData/quickfix/abstract/manyImpl.kt @@ -1,6 +1,6 @@ // "Make 'A' abstract" "false" // ERROR: Class 'X' must override public open fun foo(): kotlin.Unit defined in X
because it inherits many implementations of it -// ACTION: Create Test +// ACTION: Create test // ACTION: Make internal // ACTION: Make private // ACTION: Move 'X' to separate file diff --git a/idea/testData/quickfix/createFromUsage/createClass/delegationSpecifier/classDelegatorToSuperclass.kt b/idea/testData/quickfix/createFromUsage/createClass/delegationSpecifier/classDelegatorToSuperclass.kt index d9a75771fae..4cffe84fdee 100644 --- a/idea/testData/quickfix/createFromUsage/createClass/delegationSpecifier/classDelegatorToSuperclass.kt +++ b/idea/testData/quickfix/createFromUsage/createClass/delegationSpecifier/classDelegatorToSuperclass.kt @@ -1,6 +1,6 @@ // "Create class 'A'" "false" // ACTION: Create interface 'A' -// ACTION: Create Test +// ACTION: Create test // ERROR: Unresolved reference: A package p diff --git a/idea/testData/quickfix/modifiers/addOpenToClassDeclaration/finalJavaClass/FinalJavaSupertype.before.kt b/idea/testData/quickfix/modifiers/addOpenToClassDeclaration/finalJavaClass/FinalJavaSupertype.before.kt index 193457c5e0a..a18d6d9818c 100644 --- a/idea/testData/quickfix/modifiers/addOpenToClassDeclaration/finalJavaClass/FinalJavaSupertype.before.kt +++ b/idea/testData/quickfix/modifiers/addOpenToClassDeclaration/finalJavaClass/FinalJavaSupertype.before.kt @@ -1,6 +1,6 @@ // "class org.jetbrains.kotlin.idea.quickfix.AddOpenModifierToClassDeclarationFix" "false" // ERROR: This type is final, so it cannot be inherited from -// ACTION: Create Test +// ACTION: Create test import testPackage.* class foo : JavaClass() {} diff --git a/idea/testData/quickfix/typeMismatch/casts/typeMismatch2.kt b/idea/testData/quickfix/typeMismatch/casts/typeMismatch2.kt index 96bf1cdf0e9..b9dd6d1c242 100644 --- a/idea/testData/quickfix/typeMismatch/casts/typeMismatch2.kt +++ b/idea/testData/quickfix/typeMismatch/casts/typeMismatch2.kt @@ -1,5 +1,5 @@ // "Cast expression 'Foo()' to 'Foo'" "false" -// ACTION: Create Test +// ACTION: Create test // ERROR: Type mismatch.
Required:Foo<kotlin.Int>
Found:Foo<kotlin.Number>
class Foo diff --git a/idea/testData/quickfix/variables/removeValVarFromParameter/constructorParameter.kt b/idea/testData/quickfix/variables/removeValVarFromParameter/constructorParameter.kt index 2abae48fb65..b328c962a57 100644 --- a/idea/testData/quickfix/variables/removeValVarFromParameter/constructorParameter.kt +++ b/idea/testData/quickfix/variables/removeValVarFromParameter/constructorParameter.kt @@ -1,6 +1,6 @@ // "Remove 'val' from parameter" "false" // ACTION: Make internal // ACTION: Make private -// ACTION: Create Test +// ACTION: Create test class C(val x: String) { } \ No newline at end of file