-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtest_report_layout.cpp
50 lines (42 loc) · 1.79 KB
/
test_report_layout.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
46
47
48
49
50
#include "../source/h2_unit.cpp"
SUITE(h2_layout)
{
Case(line break)
{
h2::h2_line line = {"123", "456", " "};
h2::h2_lines lines = h2::h2_layout::line_break(line, 3);
OK(ListOf(ListOf("1", "2", "3"), ListOf("4", "5", "6"), ListOf(" ", " ")), lines);
}
Case(line break with color)
{
h2::h2_line line = {"123", "\033{red}", "456"};
h2::h2_lines lines = h2::h2_layout::line_break(line, 3);
OK(ListOf(ListOf("1", "2", "3"), ListOf("\033{red}", "4", "5", "6")), lines);
}
Case(merge lines)
{
h2::h2_lines left = {{"123", "456"}};
h2::h2_lines right = {{"12345"}};
h2::h2_lines lines = h2::h2_layout::lines_merge(left, right, 10, 10, 0, 'x', 1);
OK(ListOf(ListOf("\033{reset}", "1", "2", "3", "4", "5", "6", " ", "\033{reset}",
"\033{dark gray}", " │ ", "\033{reset}",
"\033{reset}", "1", "2", "3", "4", "5", " ", "\033{reset}",
"\033{dark gray}", " ", "\033{reset}")),
lines);
}
Case(merge lines with wrap)
{
h2::h2_lines left = {{"123", "456"}};
h2::h2_lines right = {{"12345"}};
h2::h2_lines lines = h2::h2_layout::lines_merge(left, right, 5, 5, 0, 'x', 1);
OK(ListOf(ListOf("\033{reset}", "1", "2", "3", "4", "5", "\033{reset}",
"\033{dark gray}", "\\│ ", "\033{reset}",
"\033{reset}", "1", "2", "3", "4", "5", "\033{reset}",
"\033{dark gray}", " ", "\033{reset}"),
ListOf("\033{reset}", "6", " ", "\033{reset}",
"\033{dark gray}", " │ ", "\033{reset}",
"\033{reset}", " ", "\033{reset}",
"\033{dark gray}", " ", "\033{reset}")),
lines);
}
}