tdf#164627 docx export: consolidate getWordCompatibilityMode()
[LibreOffice.git] / sc / qa / unit / functions_mathematical.cxx
blobcefc3d052e8e24fc2522214ebd869d180da066a1
1 #include "functions_test.hxx"
3 class MathematicalFunctionsTest : public FunctionsTest
5 public:
6 MathematicalFunctionsTest();
8 void testMathematicalFormulasFODS();
10 CPPUNIT_TEST_SUITE(MathematicalFunctionsTest);
11 CPPUNIT_TEST(testMathematicalFormulasFODS);
12 CPPUNIT_TEST_SUITE_END();
16 void MathematicalFunctionsTest::testMathematicalFormulasFODS()
18 OUString aDirectoryURL = m_directories.getURLFromSrc(u"/sc/qa/unit/data/functions/mathematical/fods/");
19 recursiveScan(test::pass, u"OpenDocument Spreadsheet Flat XML"_ustr, aDirectoryURL,
20 u"com.sun.star.comp.filter.OdfFlatXml,,com.sun.star.comp.Calc.XMLOasisImporter,com.sun.star.comp.Calc.XMLOasisExporter,,,true"_ustr,
21 FODS_FORMAT_TYPE, SotClipboardFormatId::NONE, 0, false);
24 MathematicalFunctionsTest::MathematicalFunctionsTest():
25 FunctionsTest()
29 CPPUNIT_TEST_SUITE_REGISTRATION(MathematicalFunctionsTest);
31 CPPUNIT_PLUGIN_IMPLEMENT();
33 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */