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