-
Notifications
You must be signed in to change notification settings - Fork 120
/
BDD.cpp
45 lines (39 loc) · 1.1 KB
/
BDD.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//
// Copyright (c) 2019-2020 Kris Jusiak (kris at jusiak dot net)
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
#include <boost/ut.hpp>
int main() {
using namespace boost::ut::literals;
using namespace boost::ut::operators::terse;
using namespace boost::ut::bdd;
"Scenario"_test = [] {
given("I have...") = [] {
when("I run...") = [] {
then("I should have...") = [] { 1_u == 1u; };
then("I should have...") = [] { 1u == 1_u; };
};
};
};
feature("Calculator") = [] {
scenario("Addition") = [] {
given("I have number 40") = [] {
auto number = 40;
when("I add 2 to number") = [&number] { number += 2; };
then("I expect number to be 42") = [&number] { 42_i == number; };
};
};
};
// clang-format off
scenario("Addition");
given("I have number 40");
auto number = 40;
when("I add 2 to number");
number += 2;
then("I expect number to be 42");
42_i == number;
// clang-format on
}