From f32d5b715b603de91cb30f901974815271faef97 Mon Sep 17 00:00:00 2001 From: Luc van Vugt Date: Mon, 20 Feb 2023 12:39:44 +0100 Subject: [PATCH] Fourth improvements #128 --- ...estScenariosAndResults_RemoveScenario.test.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/vscode-extension/src/test/atddTestScenariosAndResults_RemoveScenario.test.ts b/vscode-extension/src/test/atddTestScenariosAndResults_RemoveScenario.test.ts index f338c0a..1f8f126 100644 --- a/vscode-extension/src/test/atddTestScenariosAndResults_RemoveScenario.test.ts +++ b/vscode-extension/src/test/atddTestScenariosAndResults_RemoveScenario.test.ts @@ -12,7 +12,7 @@ suite('Remove Scenario', function () { await TestHelper.resetConfigurations(); }); - test('Scenario058', async () => { + test('Scenario 058 - Remove Scenario step 3a', async () => { //Given Test function with valid Given-When-Then structure let fsPath: string = TestHelper.getFsPathOfTestProject('TestObject.Codeunit.al') //When Remove Scenario @@ -36,7 +36,7 @@ suite('Remove Scenario', function () { if (await TestHelper.verifyUserQuestions(messageUpdate, userInteractionMock)) await TestHelper.verifyResult(messageUpdate, 'scenario058.al'); }) - test('Scenario059', async () => { + test('Scenario 059 - Remove Scenario step 2b', async () => { //Given Test function with valid Given-When-Then structure await TestHelper.resetFiles(); let fsPath: string = TestHelper.getFsPathOfTestProject('TestObject.Codeunit.al') @@ -58,7 +58,7 @@ suite('Remove Scenario', function () { await TestHelper.verifyChangeIsValid(messageUpdate); await TestHelper.verifyUserQuestions(messageUpdate, userInteractionMock) }) - test('Scenario060', async () => { + test('Scenario 060 - Remove Scenario step 3b', async () => { //Given Test function with valid Given-When-Then structure await TestHelper.resetFiles(); let fsPath: string = TestHelper.getFsPathOfTestProject('TestObject.Codeunit.al') @@ -83,7 +83,7 @@ suite('Remove Scenario', function () { if (await TestHelper.verifyUserQuestions(messageUpdate, userInteractionMock)) await TestHelper.verifyResult(messageUpdate, 'scenario060.al'); }) - test('Scenario068', async () => { + test('Scenario 068 - Remove Scenario with Initialize', async () => { //Given Test codeunit with one test function with valid Given-When-Then structure and call to Initialize await TestHelper.resetFiles(); let fsPath: string = TestHelper.getFsPathOfTestProject('TestObjectWithInitialize.Codeunit.al') @@ -109,7 +109,7 @@ suite('Remove Scenario', function () { if (await TestHelper.verifyUserQuestions(messageUpdate, userInteractionMock)) await TestHelper.verifyResult(messageUpdate, 'scenario068.al'); }) - test('Scenario069', async () => { + test('Scenario 069 - Remove Scenario with UI Handler', async () => { //Given Test codeunit with one test function with valid Given-When-Then structure and UI Handler await TestHelper.resetFiles(); let fsPath: string = TestHelper.getFsPathOfTestProject('TestObjectWithUIHandler.Codeunit.al') @@ -136,7 +136,7 @@ suite('Remove Scenario', function () { if (await TestHelper.verifyUserQuestions(messageUpdate, userInteractionMock)) await TestHelper.verifyResult(messageUpdate, 'scenario069.al'); }) - test('Scenario070', async () => { + test('Scenario 070 - Remove Scenario with UI Handler 2', async () => { //Given Test codeunit with one test function with valid Given-When-Then structure and UI Handler await TestHelper.resetFiles(); let fsPath: string = TestHelper.getFsPathOfTestProject('TestObjectWithUIHandler.Codeunit.al') @@ -163,7 +163,7 @@ suite('Remove Scenario', function () { if (await TestHelper.verifyUserQuestions(messageUpdate, userInteractionMock)) await TestHelper.verifyResult(messageUpdate, 'scenario070.al'); }) - test('Scenario071', async () => { + test('Scenario 071 - Removal Mode "No confirmation, but removal"', async () => { //Given Test codeunit with one test function with valid Given-When-Then structure and call to Initialize await TestHelper.resetFiles(); let fsPath: string = TestHelper.getFsPathOfTestProject('TestObjectWithInitialize.Codeunit.al') @@ -190,7 +190,7 @@ suite('Remove Scenario', function () { if (await TestHelper.verifyUserQuestions(messageUpdate, userInteractionMock)) await TestHelper.verifyResult(messageUpdate, 'scenario071.al'); }) - test('Scenario072', async () => { + test('Scenario 072 - Removal Mode "No confirmation & no removal"', async () => { //Given Test codeunit with one test function with valid Given-When-Then structure and call to Initialize await TestHelper.resetFiles(); let fsPath: string = TestHelper.getFsPathOfTestProject('TestObjectWithInitialize.Codeunit.al')