forked from Snaipe/Criterion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
parameterized.cc
93 lines (68 loc) · 2.65 KB
/
parameterized.cc
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
#include <criterion/parameterized.h>
#include <criterion/new/assert.h>
/* Basic usage */
ParameterizedTestParameters(params, simple) {
static int vals[] = { 1, 2, 3 };
return cr_make_param_array(int, vals, sizeof (vals) / sizeof (int));
}
ParameterizedTest(int *val, params, simple) {
cr_fatal("Parameter: %d", *val);
}
/* Multiple parameters must be coalesced in a single parameter */
struct parameter_tuple {
int i;
double d;
};
ParameterizedTestParameters(params, multiple) {
static struct parameter_tuple params[] = {
{ 1, 2 },
{ 3, 4 },
{ 5, 6 },
};
return criterion_test_params(params);
}
ParameterizedTest(struct parameter_tuple *tup, params, multiple) {
cr_fatal("Parameters: (%d, %f)", tup->i, tup->d);
}
/* Using dynamically generated parameters */
/* you **MUST** use new_obj, new_arr, delete_obj, delete_arr instead of
the new, new[], delete and delete[] operators (respectively) to allocate and
deallocate dynamic memory in parameters, otherwise this will crash. */
/* the criterion::allocator<T> allocator may be used with STL containers to
allocate objects with the functions described above. */
using criterion::new_obj;
using criterion::new_arr;
using criterion::delete_obj;
using criterion::delete_arr;
struct parameter_tuple_dyn {
int i;
std::unique_ptr<double, decltype (criterion::free)> d;
parameter_tuple_dyn() : i(0), d(nullptr, criterion::free) {}
parameter_tuple_dyn(int i, double *d) : i(i), d(d, criterion::free) {}
};
ParameterizedTestParameters(params, cleanup) {
static criterion::parameters<parameter_tuple_dyn> params;
params.push_back(parameter_tuple_dyn(1, new_obj<double>(2)));
params.push_back(parameter_tuple_dyn(3, new_obj<double>(4)));
params.push_back(parameter_tuple_dyn(5, new_obj<double>(6)));
/* A criterion::parameters<T> can be returned in place of a
criterion_test_params. */
return params;
}
ParameterizedTest(parameter_tuple_dyn * tup, params, cleanup) {
cr_fatal("Parameters: (%d, %f)", tup->i, *tup->d);
}
/* Using strings in parameterized tests */
/* you **MUST** use cr_malloc, cr_free, cr_realloc, and cr_calloc instead of their
unprefixed counterparts to allocate dynamic memory in parameters, otherwise
this will crash. */
using string = std::basic_string<char, std::char_traits<char>, criterion::allocator<char>>;
ParameterizedTestParameters(params, string) {
static criterion::parameters<string> params;
params.push_back(string("Hello"));
params.push_back(string("World"));
return params;
}
ParameterizedTest(string *str, params, string) {
cr_fatal("string: %s", (*str).c_str());
}