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