[A] Added test for cur_cell
function
This commit is contained in:
parent
e8d1ba2293
commit
ada5f1d609
@ -308,6 +308,7 @@ void test_cpp_table_changing_cell(void)
|
|||||||
table << "A";
|
table << "A";
|
||||||
assert_true(table.cur_row() == 1);
|
assert_true(table.cur_row() == 1);
|
||||||
assert_true(table.cur_col() == 2);
|
assert_true(table.cur_col() == 2);
|
||||||
|
table.cur_cell() = "432";
|
||||||
|
|
||||||
std::string table_str = table.to_string();
|
std::string table_str = table.to_string();
|
||||||
std::string table_str_etalon =
|
std::string table_str_etalon =
|
||||||
@ -317,7 +318,7 @@ void test_cpp_table_changing_cell(void)
|
|||||||
"| | | | |\n"
|
"| | | | |\n"
|
||||||
"+---+---+-----+----------+\n"
|
"+---+---+-----+----------+\n"
|
||||||
"| | | | |\n"
|
"| | | | |\n"
|
||||||
"| 3 | A | 234 | 3.140000 |\n"
|
"| 3 | A | 432 | 3.140000 |\n"
|
||||||
"| | | | |\n"
|
"| | | | |\n"
|
||||||
"+---+---+-----+----------+\n"
|
"+---+---+-----+----------+\n"
|
||||||
"| | | | |\n"
|
"| | | | |\n"
|
||||||
|
Loading…
Reference in New Issue
Block a user