File: tag.cpp

package info (click to toggle)
boost-ext-ut 2.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 620 kB
  • sloc: cpp: 6,773; makefile: 13; sh: 10
file content (35 lines) | stat: -rw-r--r-- 761 bytes parent folder | download
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
//
// 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;

  cfg<override> = {.filter = "tag", .tag = {"execute"}};

  // clang-format off
  tag("execute") / skip /
  "tag"_test = [] {
    expect(42_i == 43) << "should not fire!";
    expect(false) << "should fail!";
  };

  tag("execute") / "tag"_test= [] {
    expect(42_i == 42);
  };

  tag("not executed") / "tag"_test= [] {
    expect(43_i == 42);
  };

  tag("not executed") / tag("execute") /
  "tag"_test= [] {
    expect(42_i == 42);
  };
  // clang-format on
}