[%]
문장에 더 가까운 BDD 테스팅툴 ㄷ
피치피(39.7)
2022-11-04 07:36
추천 4
![a04424ad2c06782ab47e5a67ee91766dc289f1edd2acc5cabf13d0c15bd2d421542a53db1179e44bce6b391f8e11]()
https://codeception.com/docs/BDD
코드셉션 공식문서 BDD 툴
Behat 의 코드임
https://docs.behat.org/en/latest/
또다른 테스트 코드 예시
걍 작문같음ㄷㄷ
행위주도라서 그런가
Feature: Multiple site support
Only blog owners can post to a blog, except administrators,
who can post to all blogs. // 이건 설명이라서 코드 아님
Background:
Given a global administrator named "Greg"
And a blog named "Greg's anti-tax rants"
And a customer named "Dr. Bill"
And a blog named "Expensive Therapy" owned by "Dr. Bill"
Scenario: Dr. Bill posts to his own blog
Given I am logged in as Dr. Bill
When I try to post to "Expensive Therapy"
Then I should see "Your article was published."
Scenario: Dr. Bill tries to post to somebody else's blog, and fails
Given I am logged in as Dr. Bill
When I try to post to "Greg's anti-tax rants"
Then I should see "Hey! That's not your blog!"
Scenario: Greg posts to a client's blog
Given I am logged in as Greg
When I try to post to "Expensive Therapy"
Then I should see "Your article was published."
![1ebec223e0dc2bae61abe9e74680726cb5aec7f46720bf0b8c3ad86ba451adb8b01b25693c245f8b2d]()
I have a pan I have a apple
ㅋㅋㅋㅋㅋㅋㅋㅋㅋ
댓글 0