nss: upgrade to release 3.73
[LibreOffice.git] / sc / qa / unit / functions_information.cxx
blobf051a11c8051ff90aedd3d48a3f17c204016c837
1 #include "functions_test.hxx"
3 class InformationFunctionsTest : public FunctionsTest
5 public:
6 InformationFunctionsTest();
8 void testInformationFormulasFODS();
10 CPPUNIT_TEST_SUITE(InformationFunctionsTest);
11 CPPUNIT_TEST(testInformationFormulasFODS);
12 CPPUNIT_TEST_SUITE_END();
16 void InformationFunctionsTest::testInformationFormulasFODS()
18 OUString aDirectoryURL = m_directories.getURLFromSrc("/sc/qa/unit/data/functions/information/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 InformationFunctionsTest::InformationFunctionsTest():
25 FunctionsTest("sc/qa/unit/data/functions/information/fods/")
29 CPPUNIT_TEST_SUITE_REGISTRATION(InformationFunctionsTest);
31 CPPUNIT_PLUGIN_IMPLEMENT();
33 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */