mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
24 lines
415 B
C
24 lines
415 B
C
|
#pragma once
|
||
|
|
||
|
#include <iostream>
|
||
|
#include <cxxtest/TestSuite.h>
|
||
|
|
||
|
#include <xlnt/workbook.h>
|
||
|
#include <xlnt/worksheet.h>
|
||
|
|
||
|
class ThemeTestSuite : public CxxTest::TestSuite
|
||
|
{
|
||
|
public:
|
||
|
ThemeTestSuite()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void test_write_theme()
|
||
|
{
|
||
|
//content = write_theme();
|
||
|
//assert_equals_file_content(
|
||
|
// os.path.join(DATADIR, "writer", "expected", "theme1.xml"), content);
|
||
|
}
|
||
|
};
|