Skip to content

Commit

Permalink
Fourth improvements #128
Browse files Browse the repository at this point in the history
  • Loading branch information
Luc van Vugt committed Feb 20, 2023
1 parent b0a7b56 commit f32d5b7
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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')
Expand All @@ -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')
Expand All @@ -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')
Expand All @@ -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')
Expand All @@ -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')
Expand All @@ -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')
Expand All @@ -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')
Expand Down

0 comments on commit f32d5b7

Please sign in to comment.