Skip to content

Commit

Permalink
Fixed AddFunctionParametersFix test data output
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimirdolzhenko authored and demiurg906 committed Nov 28, 2020
1 parent 406e863 commit 17e6e88
Show file tree
Hide file tree
Showing 19 changed files with 20 additions and 20 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// "Add 'int' as 1st parameter to method 'K'" "true"
// "Add 'int' as 1st parameter to constructor 'K'" "true"

public class J {
void foo() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// "Add 'int' as 1st parameter to method 'K'" "true"
// "Add 'int' as 1st parameter to constructor 'K'" "true"

public class J {
void foo() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// "Add 'int' as 1st parameter to method 'K'" "true"
// "Add 'int' as 1st parameter to constructor 'K'" "true"

public class J {
void foo() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// "Add 'int' as 1st parameter to method 'K'" "true"
// "Add 'int' as 1st parameter to constructor 'K'" "true"

public class J {
void foo() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// "Add 'int' as 1st parameter to method 'K'" "true"
// "Add 'int' as 1st parameter to constructor 'K'" "true"

public class J {
void foo() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// "Add 'int' as 1st parameter to method 'K'" "true"
// "Add 'int' as 1st parameter to constructor 'K'" "true"

public class J {
void foo() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// "Change 2nd parameter of method 'K' from 'boolean' to 'String'" "true"
// "Change 2nd parameter of constructor 'K' from 'boolean' to 'String'" "true"

public class J {
void foo() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// "Change 2nd parameter of method 'K' from 'boolean' to 'String'" "true"
// "Change 2nd parameter of constructor 'K' from 'boolean' to 'String'" "true"

public class J {
void foo() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// "Change 2nd parameter of method 'K' from 'boolean' to 'String'" "true"
// "Change 2nd parameter of constructor 'K' from 'boolean' to 'String'" "true"

public class J {
void foo() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// "Change 2nd parameter of method 'K' from 'boolean' to 'String'" "true"
// "Change 2nd parameter of constructor 'K' from 'boolean' to 'String'" "true"

public class J {
void foo() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// "Add 'int' as 1st parameter to method 'Foo'" "true"
// "Add 'int' as 1st parameter to constructor 'Foo'" "true"

public class J {
void test() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// "Add 'int' as 1st parameter to method 'Foo'" "true"
// "Add 'int' as 1st parameter to constructor 'Foo'" "true"

public class J {
void test() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// "Add 'int' as 2nd parameter to method 'Foo'" "true"
// "Add 'int' as 2nd parameter to constructor 'Foo'" "true"

public class J {
void test() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// "Add 'int' as 2nd parameter to method 'Foo'" "true"
// "Add 'int' as 2nd parameter to constructor 'Foo'" "true"

public class J {
void test() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// "Remove 1st parameter from method 'K'" "true"
// "Remove 1st parameter from constructor 'K'" "true"

public class J {
void foo() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// "Remove 1st parameter from method 'K'" "true"
// "Remove 1st parameter from constructor 'K'" "true"

public class J {
void foo() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// "Remove 1st parameter from method 'K'" "true"
// "Remove 1st parameter from constructor 'K'" "true"

public class J {
void foo() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// "Remove 1st parameter from method 'K'" "true"
// "Remove 1st parameter from constructor 'K'" "true"

public class J {
void foo() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ class CommonIntentionActionsTest : LightPlatformCodeInsightFixtureTestCase() {
createConstructorActions(
myFixture.atCaret(),
constructorRequest(project, listOf(pair("param0", PsiType.INT as PsiType)))
).findWithText("Add 'int' as 1st parameter to method 'Foo'")
).findWithText("Add 'int' as 1st parameter to constructor 'Foo'")
)
myFixture.checkResult(
"""
Expand All @@ -519,7 +519,7 @@ class CommonIntentionActionsTest : LightPlatformCodeInsightFixtureTestCase() {
createConstructorActions(
myFixture.atCaret(),
constructorRequest(project, emptyList())
).findWithText("Remove 1st parameter from method 'Foo'")
).findWithText("Remove 1st parameter from constructor 'Foo'")
)
myFixture.checkResult(
"""
Expand Down

0 comments on commit 17e6e88

Please sign in to comment.