get get_point_pos

This commit is contained in:
Thomas Fussell 2016-07-22 23:50:27 -04:00
parent 5cdaa6ec6b
commit 75dc7ebf26

View File

@ -1193,4 +1193,12 @@ public:
TS_ASSERT(std::string("A1:B2") != ref1);
TS_ASSERT("A1:B2" != ref1);
}
void test_get_point_pos()
{
xlnt::workbook wb;
auto ws = wb.get_active_sheet();
TS_ASSERT_EQUALS(ws.get_point_pos({0, 0}), "A1");
}
};