mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
23 lines
381 B
C++
23 lines
381 B
C++
#pragma once
|
|
|
|
#include <iostream>
|
|
#include <cxxtest/TestSuite.h>
|
|
|
|
#include "../xlnt.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);
|
|
}
|
|
};
|