Add test for duplicate shared string

This commit is contained in:
Adam Nielsen 2016-04-26 13:28:57 +10:00
parent 6471420ea8
commit 62c00744b0
2 changed files with 14 additions and 0 deletions

View File

@ -170,6 +170,20 @@ public:
TS_ASSERT_EQUALS(val, "Direnç");
}
void test_read_shared_strings_max_range()
{
auto path = PathHelper::GetDataDirectory("/reader/shared_strings-max_range.xlsx");
xlnt::workbook wb;
xlnt::excel_serializer serializer(wb);
serializer.load_workbook(path);
auto ws = wb["Sheet1"];
auto val = ws.get_cell("A1").get_value<std::string>();
TS_ASSERT_EQUALS(val, "Donald");
}
xlnt::workbook date_mac_1904()
{
auto path = PathHelper::GetDataDirectory("/reader/date_1904.xlsx");

Binary file not shown.