해결된 질문
22.03.13 23:58 작성
·
183
1
답변 1
1
안녕하세요. 김성규님, 공식 서포터즈 David입니다.
given은 주어진 상황입니다.
데이터베이스에 회원 2명이 저장된 상황(회원 2명을 생성, 저장)에서/ 테스트할 행위 findAll을 실행했고 / 예상되는 결과로 2명을 가지고 왔는지 검증하고 있습니다.
따라서, given절에 회원 2명의 생성과 저장 명령문을 배치하는 게 적절합니다.
아래 글을 참고해주세요.
https://martinfowler.com/bliki/GivenWhenThen.html
Feature: User trades stocks Scenario: User requests a sell before close of trading Given I have 100 shares of MSFT stock And I have 150 shares of APPL stock And the time is before close of trading When I ask to sell 20 shares of MSFT stock Then I should have 80 shares of MSFT stock And I should have 150 shares of APPL stock And a sell order for 20 shares of MSFT stock should have been executed
감사합니다.
2022. 03. 14. 07:00
감사합니다. 잘못 이해하고 있었던 것 같습니다.