1
0
Fork 0

[A] Added test for `cur_cell` function

This commit is contained in:
seleznevae 2019-08-27 13:50:25 +03:00
parent e8d1ba2293
commit ada5f1d609
1 changed files with 2 additions and 1 deletions

View File

@ -308,6 +308,7 @@ void test_cpp_table_changing_cell(void)
table << "A";
assert_true(table.cur_row() == 1);
assert_true(table.cur_col() == 2);
table.cur_cell() = "432";
std::string table_str = table.to_string();
std::string table_str_etalon =
@ -317,7 +318,7 @@ void test_cpp_table_changing_cell(void)
"| | | | |\n"
"+---+---+-----+----------+\n"
"| | | | |\n"
"| 3 | A | 234 | 3.140000 |\n"
"| 3 | A | 432 | 3.140000 |\n"
"| | | | |\n"
"+---+---+-----+----------+\n"
"| | | | |\n"