042033f1e6
Change-Id: I044dd21b63d7eb03224675584fa143009c6b6008 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108418 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
33 lines
915 B
C++
33 lines
915 B
C++
#include "functions_test.hxx"
|
|
|
|
class FunctionsTestOld : public FunctionsTest
|
|
{
|
|
public:
|
|
FunctionsTestOld();
|
|
|
|
void testFormulasFODS();
|
|
|
|
CPPUNIT_TEST_SUITE(FunctionsTestOld);
|
|
CPPUNIT_TEST(testFormulasFODS);
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
};
|
|
|
|
FunctionsTestOld::FunctionsTestOld():
|
|
FunctionsTest("sc/qq/unit/data/functions/fods")
|
|
{
|
|
}
|
|
|
|
void FunctionsTestOld::testFormulasFODS()
|
|
{
|
|
OUString aDirectoryURL = m_directories.getURLFromSrc(u"/sc/qa/unit/data/functions/fods/");
|
|
recursiveScan(test::pass, "OpenDocument Spreadsheet Flat XML", aDirectoryURL,
|
|
"com.sun.star.comp.filter.OdfFlatXml,,com.sun.star.comp.Calc.XMLOasisImporter,com.sun.star.comp.Calc.XMLOasisExporter,,,true",
|
|
FODS_FORMAT_TYPE, SotClipboardFormatId::NONE, 0, false);
|
|
}
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(FunctionsTestOld);
|
|
|
|
CPPUNIT_PLUGIN_IMPLEMENT();
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|