mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
29 lines
580 B
C
29 lines
580 B
C
/*
|
|
* Tests for the libxlsxwriter library.
|
|
*
|
|
* Copyright 2014, John McNamara, jmcnamara@cpan.org
|
|
*
|
|
*/
|
|
|
|
#include "../ctest.h"
|
|
#include "../helper.h"
|
|
|
|
#include "xlsxwriter/worksheet.h"
|
|
|
|
// Test _xml_declaration().
|
|
CTEST(worksheet, xml_declaration) {
|
|
|
|
char* got;
|
|
char exp[] = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n";
|
|
FILE* testfile = tmpfile();
|
|
|
|
lxw_worksheet *worksheet = _new_worksheet(NULL);
|
|
worksheet->file = testfile;
|
|
|
|
_worksheet_xml_declaration(worksheet);
|
|
|
|
RUN_XLSX_STREQ(exp, got);
|
|
|
|
_free_worksheet(worksheet);
|
|
}
|