こんにちは、検索サービスが正しい結果を返すかどうかをテストする必要があるシナリオがあります。したがって、私の話は次のようになります。
Narrative:
In order to easily discover if a player is registered in a loyalty program
As a customer service representative
I want to be able to search for registered players by player first and last name
Scenario: Retrieve Player information by First and Last Name
Given players registered in the Data Warehouse and some combination of Loyalty1 and/or Loyalty2 programs:
|first name|last name|city |province|loyalty1 |loyalty2|
|Pete |Walter |Winnipeg |<null> |false |true |
|Jon |Dewit |Winnipeg |MB |true |true |
|John |Dewit |<null> |<null> |true |true |
|Peter |Dewalt |<null> |<null> |true |false |
When the <firstnamecriteria> and <lastnamecriteria> criteria are specified
Then the system displays the correct results, using a case-insensitive "begins with" search as follows:
|firstnamecriteria|lastnamecriteria|results |
|Jo | ||first name|last name||
| | ||Jon |Dewit ||
| | ||John |Dewit ||
Examples:
|firstnamecriteria|lastnamecriteria|
|Jo | |
| |Dew |
|J |D |
"Then" セクションの下のテーブルは、名/姓の基準のさまざまな順列を使用してしばらく続き、結果列に予想される結果のネストされたテーブルが続きます。例セクションには、「いつ」セクションに渡される可能性のある検索基準のリストが含まれます。
このようなネストされたテーブルを持つことは可能ですか? そうでない場合、同じことを達成するために使用できる別の方法はありますか?