mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
Merge branch 'master' of github.com:tfussell/xlnt
This commit is contained in:
commit
6471420ea8
|
@ -156,6 +156,20 @@ public:
|
|||
TS_ASSERT_EQUALS(code, expected);
|
||||
}
|
||||
|
||||
void test_read_charset_excel()
|
||||
{
|
||||
auto path = PathHelper::GetDataDirectory("/reader/charset-excel.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, "Direnç");
|
||||
}
|
||||
|
||||
xlnt::workbook date_mac_1904()
|
||||
{
|
||||
auto path = PathHelper::GetDataDirectory("/reader/date_1904.xlsx");
|
||||
|
|
BIN
tests/data/reader/charset-excel.xlsx
Normal file
BIN
tests/data/reader/charset-excel.xlsx
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user