mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Fix testcase for non C99 compilers.
This commit is contained in:
parent
ac87b9e359
commit
dc79221163
@ -17,13 +17,7 @@ TEST(worksheet, write_col_info01) {
|
||||
char* got;
|
||||
char exp[] = "<col min=\"2\" max=\"4\" width=\"5.7109375\" customWidth=\"1\"/>";
|
||||
FILE* testfile = tmpfile();
|
||||
lxw_col_options col_options = {.firstcol = 1,
|
||||
.lastcol = 3,
|
||||
.width = 5,
|
||||
.format = NULL,
|
||||
.hidden = 0,
|
||||
.level = 0,
|
||||
.collapsed = 0};
|
||||
lxw_col_options col_options = {1, 3, 5, NULL, 0, 0, 0};
|
||||
|
||||
lxw_worksheet *worksheet = _new_worksheet(NULL);
|
||||
worksheet->file = testfile;
|
||||
@ -41,13 +35,7 @@ TEST(worksheet, write_col_info02) {
|
||||
char* got;
|
||||
char exp[] = "<col min=\"6\" max=\"6\" width=\"8.7109375\" hidden=\"1\" customWidth=\"1\"/>";
|
||||
FILE* testfile = tmpfile();
|
||||
lxw_col_options col_options = {.firstcol = 5,
|
||||
.lastcol = 5,
|
||||
.width = 8,
|
||||
.format = NULL,
|
||||
.hidden = 1,
|
||||
.level = 0,
|
||||
.collapsed = 0};
|
||||
lxw_col_options col_options = {5, 5, 8, NULL, 1, 0, 0};
|
||||
|
||||
lxw_worksheet *worksheet = _new_worksheet(NULL);
|
||||
worksheet->file = testfile;
|
||||
@ -69,13 +57,7 @@ TEST(worksheet, write_col_info03) {
|
||||
lxw_format *format = _new_format();
|
||||
format->xf_index = 1;
|
||||
|
||||
lxw_col_options col_options = {.firstcol = 7,
|
||||
.lastcol = 7,
|
||||
.width = LXW_DEF_COL_WIDTH,
|
||||
.format = format,
|
||||
.hidden = 0,
|
||||
.level = 0,
|
||||
.collapsed = 0};
|
||||
lxw_col_options col_options = {7, 7, LXW_DEF_COL_WIDTH, format, 0, 0, 0};
|
||||
|
||||
lxw_worksheet *worksheet = _new_worksheet(NULL);
|
||||
worksheet->file = testfile;
|
||||
@ -97,13 +79,7 @@ TEST(worksheet, write_col_info04) {
|
||||
lxw_format *format = _new_format();
|
||||
format->xf_index = 1;
|
||||
|
||||
lxw_col_options col_options = {.firstcol = 8,
|
||||
.lastcol = 8,
|
||||
.width = LXW_DEF_COL_WIDTH,
|
||||
.format = format,
|
||||
.hidden = 0,
|
||||
.level = 0,
|
||||
.collapsed = 0};
|
||||
lxw_col_options col_options = {8, 8, LXW_DEF_COL_WIDTH, format, 0, 0, 0};
|
||||
|
||||
lxw_worksheet *worksheet = _new_worksheet(NULL);
|
||||
worksheet->file = testfile;
|
||||
@ -121,13 +97,7 @@ TEST(worksheet, write_col_info05) {
|
||||
char* got;
|
||||
char exp[] = "<col min=\"10\" max=\"10\" width=\"2.7109375\" customWidth=\"1\"/>";
|
||||
FILE* testfile = tmpfile();
|
||||
lxw_col_options col_options = {.firstcol = 9,
|
||||
.lastcol = 9,
|
||||
.width = 2,
|
||||
.format = NULL,
|
||||
.hidden = 0,
|
||||
.level = 0,
|
||||
.collapsed = 0};
|
||||
lxw_col_options col_options = {9, 9, 2, NULL, 0, 0, 0};
|
||||
|
||||
lxw_worksheet *worksheet = _new_worksheet(NULL);
|
||||
worksheet->file = testfile;
|
||||
@ -145,13 +115,7 @@ TEST(worksheet, write_col_info06) {
|
||||
char* got;
|
||||
char exp[] = "<col min=\"12\" max=\"12\" width=\"0\" hidden=\"1\" customWidth=\"1\"/>";
|
||||
FILE* testfile = tmpfile();
|
||||
lxw_col_options col_options = {.firstcol = 11,
|
||||
.lastcol = 11,
|
||||
.width = LXW_DEF_COL_WIDTH,
|
||||
.format = NULL,
|
||||
.hidden = 1,
|
||||
.level = 0,
|
||||
.collapsed = 0};
|
||||
lxw_col_options col_options = {11, 11, LXW_DEF_COL_WIDTH, NULL, 1, 0, 0};
|
||||
|
||||
lxw_worksheet *worksheet = _new_worksheet(NULL);
|
||||
worksheet->file = testfile;
|
||||
|
Loading…
x
Reference in New Issue
Block a user