nss: upgrade to release 3.73
[LibreOffice.git] / sc / qa / unit / functions_mathematical.cxx
blob6be24fe1b6a71b7dfa17211f48ad408392fff810
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("/sc/qa/unit/data/functions/mathematical/fods/");
19 recursiveScan(test::pass, "OpenDocument Spreadsheet Flat XML", aDirectoryURL,
20 "com.sun.star.comp.filter.OdfFlatXml,,com.sun.star.comp.Calc.XMLOasisImporter,com.sun.star.comp.Calc.XMLOasisExporter,,,true",
21 FODS_FORMAT_TYPE, SotClipboardFormatId::NONE, 0, false);
24 MathematicalFunctionsTest::MathematicalFunctionsTest():
25 FunctionsTest("sc/qa/unit/data/functions/mathematical/fods/")
29 CPPUNIT_TEST_SUITE_REGISTRATION(MathematicalFunctionsTest);
31 CPPUNIT_PLUGIN_IMPLEMENT();
33 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */