THIS SPACE IS UNDER CONSTRUCTION

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

Feature

User story

As a user
I want to add an Out-of-Office
In order to let other users know of my absence

Use caseUC-409: Insert OoO
Expected resultCheck the response of the webservice call.
Actual resultCheck the front-end of the application under test.
Test pass conditions

The following values need to be verified:

  • OoO ID
  • Start date
  • End date

The following values need to be verifierd for every substitute:

  • Substitute id
  • Substitute type
  • Substitute quality

Scenarios (Cucumber)

insertOoO.feature
#Remove the @ignore-tag(s) of scenarios you want to start testing.

@ignore
Feature: TS-408: Insert Out-of-Office
  As a user
  I want to add an Out-of-Office
  In order to let other users know of my absence

  @ignore
  Scenario: Insert an OoO without substitutes
    Given user is logged in
    When user is on the insert OoO page
    When user adds an OoO
    Then OoO is added correctly

  @ignore
  Scenario: Insert an OoO with a substitute
    Given user is logged in
    When user is on the insert OoO page
    When user adds an OoO with a substitute
    Then OoO is added correctly

  @ignore
  Scenario: Insert an OoO with substitutes
    Given user is logged in
    When user is on the insert OoO page
    When user adds an OoO with substitutes
    Then OoO is added correctly
  • No labels