Avoid potential negative array index access to cached text.
[LibreOffice.git] / sc / qa / unit / functions_information.cxx
blob9d6de422ec5b50534675ec8c8ecf5e32bbd34e2f
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(u"/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()
29 CPPUNIT_TEST_SUITE_REGISTRATION(InformationFunctionsTest);
31 CPPUNIT_PLUGIN_IMPLEMENT();
33 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */