1
0
Fork 0

[A] Added one test for separator

This commit is contained in:
seleznevae 2018-12-22 12:08:19 +03:00
parent 883d384229
commit 918e71aa66
1 changed files with 26 additions and 0 deletions

View File

@ -130,6 +130,32 @@ void test_table_border_style(void)
ft_destroy_table(table);
}
WHEN("Separator at the top and at the bottom testing") {
table = create_test_int_table(1);
ft_add_separator(table);
ft_set_cur_cell(table, 0, 0);
ft_add_separator(table);
const char *table_str = ft_to_string(table);
assert_true(table_str != NULL);
const char *table_str_etalon =
"+===+===+====+====+\n"
"| | | | |\n"
"| 3 | 4 | 55 | 67 |\n"
"| | | | |\n"
"+---+---+----+----+\n"
"| | | | |\n"
"| 3 | 4 | 55 | 67 |\n"
"| | | | |\n"
"+---+---+----+----+\n"
"| | | | |\n"
"| 3 | 4 | 55 | 67 |\n"
"| | | | |\n"
"+===+===+====+====+\n";
assert_str_equal(table_str, table_str_etalon);
ft_destroy_table(table);
}
WHEN("Separator complex testing") {
table = ft_create_table();
ft_set_border_style(table, FT_DOUBLE2_STYLE);