xlnt/source/tests/ThemeTestSuite.h

24 lines
415 B
C
Raw Normal View History

2014-05-09 03:32:12 +08:00
#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);
}
};