Skip to content

Commit

Permalink
Next 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 fe7608d commit c80130c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ suite('AddFeature', function () {
await TestHelper.resetConfigurations();
});

test('Scenario086', async () => {
test('Scenario 086 - Add Feature 2a', async () => {
//Given Test Directory
await workspace.getConfiguration('atddTestScriptor', Uri.file(TestHelper.pathOfTestProject)).update('testDirectory', 'src/codeunit')
//When User selects "Add Scenario" action
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ suite('AddScenario', function () {
await TestHelper.resetConfigurations();
});

test('Scenario055', async () => {
test('Scenario 055 - Add Scenario (to existing test codeunit with 1 feature)', async () => {
//Given Test function with valid Given-When-Then structure
let fsPath: string = TestHelper.getFsPathOfTestProject('TestObject.Codeunit.al')
//When User selects "Add Scenario" action
Expand All @@ -30,7 +30,7 @@ suite('AddScenario', function () {
await TestHelper.verifyChangeIsValid(messageUpdate);
await TestHelper.verifyResult(messageUpdate, 'scenario055.al');
})
test('Scenario073', async () => {
test('Scenario 073 - Add another Scenario (to existing test codeunit with 1 feature)', async () => {
//Given Result from scenario 55
let fsPath: string = TestHelper.getFsPathOfTestProject('TestObject.Codeunit.al')
//When User selects "Add Scenario" action
Expand All @@ -49,7 +49,7 @@ suite('AddScenario', function () {
await TestHelper.verifyChangeIsValid(messageUpdate);
await TestHelper.verifyResult(messageUpdate, 'scenario073.al');
})
test('Scenario078', async () => {
test('Scenario 078 - Add Scenario (to existing test codeunit with 1 feature) with Given-When-Then', async () => {
//Given Test function with valid Given-When-Then structure
await TestHelper.resetFiles();
let fsPath: string = TestHelper.getFsPathOfTestProject('TestObject.Codeunit.al')
Expand Down Expand Up @@ -87,7 +87,7 @@ suite('AddScenario', function () {
await TestHelper.verifyChangeIsValid(messageUpdate);
await TestHelper.verifyResult(messageUpdate, 'scenario078.al');
})
test('Scenario079', async () => {
test('Scenario 079 - Add another Scenario (to existing test codeunit with 1 feature) with Given-When-Then', async () => {
//Given Test function with valid Given-When-Then structure
let fsPath: string = TestHelper.getFsPathOfTestProject('TestObject.Codeunit.al')
//Given Added scenario
Expand Down

0 comments on commit c80130c

Please sign in to comment.