File: suite.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 (154 lines) | stat: -rw-r--r-- 3,006 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
//
// 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>

namespace ut = boost::ut;

ut::suite _1 = [] {
  using namespace ut;
  "1.1"_test = [] {};
  "1.2"_test = [] {};
  "1.3"_test = [] {};
  "1.4"_test = [] {};
  "1.5"_test = [] {};
  "1.6"_test = [] {};
  "1.7"_test = [] {};
  "1.8"_test = [] {};
  "1.9"_test = [] {};
  "1.10"_test = [] {};
};

ut::suite _2 = [] {
  using namespace ut;
  "2.1"_test = [] {};
  "2.2"_test = [] {};
  "2.3"_test = [] {};
  "2.4"_test = [] {};
  "2.5"_test = [] {};
  "2.6"_test = [] {};
  "2.7"_test = [] {};
  "2.8"_test = [] {};
  "2.9"_test = [] {};
  "2.10"_test = [] {};
};

ut::suite _3 = [] {
  using namespace ut;
  "3.1"_test = [] {};
  "3.2"_test = [] {};
  "3.3"_test = [] {};
  "3.4"_test = [] {};
  "3.5"_test = [] {};
  "3.6"_test = [] {};
  "3.7"_test = [] {};
  "3.8"_test = [] {};
  "3.9"_test = [] {};
  "3.10"_test = [] {};
};

ut::suite _4 = [] {
  using namespace ut;
  "4.1"_test = [] {};
  "4.2"_test = [] {};
  "4.3"_test = [] {};
  "4.4"_test = [] {};
  "4.5"_test = [] {};
  "4.6"_test = [] {};
  "4.7"_test = [] {};
  "4.8"_test = [] {};
  "4.9"_test = [] {};
  "4.10"_test = [] {};
};

#if not defined(WIN32)
ut::suite _5 = [] {
  using namespace ut;
  "5.1"_test = [] {};
  "5.2"_test = [] {};
  "5.3"_test = [] {};
  "5.4"_test = [] {};
  "5.5"_test = [] {};
  "5.6"_test = [] {};
  "5.7"_test = [] {};
  "5.8"_test = [] {};
  "5.9"_test = [] {};
  "5.10"_test = [] {};
};

ut::suite _6 = [] {
  using namespace ut;
  "6.1"_test = [] {};
  "6.2"_test = [] {};
  "6.3"_test = [] {};
  "6.4"_test = [] {};
  "6.5"_test = [] {};
  "6.6"_test = [] {};
  "6.7"_test = [] {};
  "6.8"_test = [] {};
  "6.9"_test = [] {};
  "6.10"_test = [] {};
};

ut::suite _7 = [] {
  using namespace ut;
  "7.1"_test = [] {};
  "7.2"_test = [] {};
  "7.3"_test = [] {};
  "7.4"_test = [] {};
  "7.5"_test = [] {};
  "7.6"_test = [] {};
  "7.7"_test = [] {};
  "7.8"_test = [] {};
  "7.9"_test = [] {};
  "7.10"_test = [] {};
};

ut::suite _8 = [] {
  using namespace ut;
  "8.1"_test = [] {};
  "8.2"_test = [] {};
  "8.3"_test = [] {};
  "8.4"_test = [] {};
  "8.5"_test = [] {};
  "8.6"_test = [] {};
  "8.7"_test = [] {};
  "8.8"_test = [] {};
  "8.9"_test = [] {};
  "8.10"_test = [] {};
};

ut::suite _9 = [] {
  using namespace ut;
  "9.1"_test = [] {};
  "9.2"_test = [] {};
  "9.3"_test = [] {};
  "9.4"_test = [] {};
  "9.5"_test = [] {};
  "9.6"_test = [] {};
  "9.7"_test = [] {};
  "9.8"_test = [] {};
  "9.9"_test = [] {};
  "9.10"_test = [] {};
};

ut::suite _10 = [] {
  using namespace ut;
  "10.1"_test = [] {};
  "10.2"_test = [] {};
  "10.3"_test = [] {};
  "10.4"_test = [] {};
  "10.5"_test = [] {};
  "10.6"_test = [] {};
  "10.7"_test = [] {};
  "10.8"_test = [] {};
  "10.9"_test = [] {};
  "10.10"_test = [] {};
};
#endif

int main() {}