Requirements Continued

Based on the initial vague Requirements you probably have some questions.

Questions

How to identify different rooms?

  • Each room has a location code (identification).
  • Some rooms have a name.

How big is the meeting room?

  • For every room the number of persons that can use it together (for a meeting) is known.

Is the number of rooms / facilities known?

  • During startup of the service(s), the configuration of rooms and facilities can be loaded.

Sample Data

Below are three samples given of concrete data, for rooms and their possible facility.

Sample 01

NameLocationCapacityFacilities
MercuryBG.01-18computer small screen
VenusBG.02-116computer large screen/whiteboard
MarsBG.02-130beamer

Sample 02

NameLocationCapacityFacilities
AthensDE-018whiteboard
BerlinDE-0516beamer/whiteboard/workstations
CopenhagenWL-03-0112whiteboard
DublinWL-02-0112whiteboard

Sample 03

NameLocationCapacityFacilities
1st floor 036
1st floor 056
2nd floor 0210
2nd floor 0310

Create Cucumber Features

Based on the requirements, questions, answers and sample data create scenarios in Cucumber Gherkin format.

Feature: Refund item

Scenario: Jeff returns a faulty microwave
    Given Jeff has bought a microwave for $100
    And he has a receipt
    When he returns the microwave
    Then Jeff should be refunded 100 USD
Written on May 7, 2016