Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

readMessage.feature

Code Block
languagegherkin
#Remove the @ignore-tag(s) of scenarios you want to start testing.

@ignore
Feature: Read message
  As a user
  I want to be able to read a message
  So that I know what another user sent me

  @ignore
  Scenario: Read a message from the inbox
    Given user is logged in
    When user is consulting the INBOX
    And user reads the basic message
    Then the correct message is shown in the INBOX

  @ignore
  Scenario: Read a message from the sent box
    Given user is logged in
    When user is consulting the SENTBOX
    And user reads the basic message
    Then the correct message is shown in the SENTBOX

  @ignore
  Scenario: Read an encrypted message
    Given user is logged in
    When user is consulting the INBOX
    And user reads the encrypted message
    Then the correct message is shown in the INBOX

  @ignore
  Scenario: Read a message with an attachment
    Given user is logged in
    When user is consulting the INBOX
    And user reads the message with an attachment
    Then the correct message is shown in the INBOX

  @ignore
  Scenario: Read an encrypted message with an attachment
    Given user is logged in
    When user is consulting the INBOX
    And user reads the encrypted message with an attachment
    Then the correct message is shown in the INBOX

...