-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor - Remove the logic of eliminating spaces in param list (#1700)
- Loading branch information
Showing
5 changed files
with
10 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -404,7 +404,7 @@ org.opentest4j.AssertionFailedError: expected: <1> but was: <2> | |
}); | ||
|
||
test("can handle test cases with more than 3 arguments", () => { | ||
const testItem = generateTestItem(testController, '[email protected]#testMultiArguments(String,String,String)', TestKind.JUnit5, new Range(10, 0, 16, 0)); | ||
const testItem = generateTestItem(testController, '[email protected]#testMultiArguments(String, String, String)', TestKind.JUnit5, new Range(10, 0, 16, 0)); | ||
const testRunRequest = new TestRunRequest([testItem], []); | ||
const testRun = testController.createTestRun(testRunRequest); | ||
const startedSpy = sinon.spy(testRun, 'started'); | ||
|
@@ -439,7 +439,7 @@ org.opentest4j.AssertionFailedError: expected: <1> but was: <2> | |
}); | ||
|
||
test("can handle normal test method with multiple arguments", () => { | ||
const testItem = generateTestItem(testController, '[email protected]#test(Vertx,VertxTestContext)', TestKind.JUnit5, new Range(10, 0, 16, 0)); | ||
const testItem = generateTestItem(testController, '[email protected]#test(Vertx, VertxTestContext)', TestKind.JUnit5, new Range(10, 0, 16, 0)); | ||
const testRunRequest = new TestRunRequest([testItem], []); | ||
const testRun = testController.createTestRun(testRunRequest); | ||
const startedSpy = sinon.spy(testRun, 'started'); | ||
|