libxlsxwriter/test/unit/worksheet/test_worksheet_xml_declaration.c
2014-08-07 01:53:05 +01:00

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);
}