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 26 Next »

Feature

User story

As a user
I want to know the acknowledgments status of my sent message
In order to know if my recipient has received/read it

Use caseUC-405: Acknowledgments
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 for all recipients:

  • Recipient ID
  • Recipient name
  • Recipient quality
  • Published
  • Received
  • Read

Code

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

@ignore
Feature: TS-401: Message list
  As a user
  I want to see my messages in any box
  In order to read or delete them

  @ignore
  Scenario: Verify the messages in the inbox
    Given user is logged in
    When user is consulting the INBOX
    Then INBOX message list is shown

  @ignore
  Scenario: Verify at the messages in the sent box
    Given user is logged in
    When user is consulting the SENTBOX
    Then SENTBOX message list is shown

  @ignore
  Scenario: Verify the messages in the bin inbox
    Given user is logged in
    When user is consulting the BININBOX
    Then BININBOX message list is shown

  @ignore
  Scenario: Verify the messages in the bin sent box
    Given user is logged in
    When user is consulting the BINSENTBOX
    Then BINSENTBOX message list is shown
  • No labels