-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestbench.h
66 lines (36 loc) · 875 Bytes
/
testbench.h
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
//
// Created by david on 28/12/2019.
//
#ifndef GRAPHKAT_TESTBENCH_H
#define GRAPHKAT_TESTBENCH_H
namespace TB {
void run_windowing();
void run_anyvector();
void deallocating();
void fancy_types();
void fancy_access();
void typeinfo();
void macro_parenthesis();
void templating();
void birthday();
void movingpointers();
void macro_order();
void structuring_vector();
void mystruct_macro_order();
void isRValue();
void scope_escape_tb();
void pointy_parant();
void lut();
void bad_lambda();
void pikapika();
void optional();
void cr_test();
void vector_init();
void is_T();
void implicit_two_con();
void struct_scope_escape();
void template_inconsitencies();
void trunc_pow2();
void dynamic_queue();
}
#endif //GRAPHKAT_TESTBENCH_H