Change-Id: I46cce6cb332fb060a9e8f691d8f70808398b85ed Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142707 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
34 lines
915 B
C++
34 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: */
|