Versions Compared

Key

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

Feature

...

User story

As a user
I want to move messages between boxes
In order to sort them

Use caseUC-405: Move message
Expected resultCheck the response of the webservice call.
Actual resultCheck the front-end of the application under test.
Test pass conditions

Verify that the message is correctly moved to the specified box.


Scenarios (Cucumber)

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

@ignore
Feature: TS-405: Move message
  As a user
  I want to move messages between boxes
  In order to sort them

  @ignore
  Scenario: Move a message from inbox to bin inbox
    Given user is logged in
    When user is consulting the INBOX
    And user moves the 'move_to_bin_inbox' message to the BININBOX
    Then the message has been moved correctly to the BININBOX

  @ignore
  Scenario: Move a message from sent box to bin sent box
    Given user is logged in
    When user is consulting the SENTBOX
    And user moves the 'move_to_bin_sent_box' message to the BINSENTBOX
    Then the message has been moved correctly to the BINSENTBOX

  @ignore
  Scenario: Move a message from bin inbox to inbox
    Given user is logged in
    When user is consulting the BININBOX
    And user moves the 'move_to_sent_box' message to the INBOX
    Then the message has been moved correctly to the INBOX

  @ignore
  Scenario: Move a message from bin sent box to sent box
    Given user is logged in
    When user is consulting the BINSENTBOX
    And user moves the 'move_to_inbox_box' message to the SENTBOX
    Then the message has been moved correctly to the SENTBOX

...