forked from amazingfate/loongoffice
Change-Id: I3ca640a24e95d1e6e0ad66be7bf09c45d63b52bb Reviewed-on: https://gerrit.libreoffice.org/31447 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
34 lines
956 B
C++
34 lines
956 B
C++
#include "functions_test.hxx"
|
|
|
|
class ArrayFunctionsTest : public FunctionsTest
|
|
{
|
|
public:
|
|
ArrayFunctionsTest();
|
|
|
|
void testArrayFormulasFODS();
|
|
|
|
CPPUNIT_TEST_SUITE(ArrayFunctionsTest);
|
|
CPPUNIT_TEST(testArrayFormulasFODS);
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
};
|
|
|
|
void ArrayFunctionsTest::testArrayFormulasFODS()
|
|
{
|
|
OUString aDirectoryURL = m_directories.getURLFromSrc("/sc/qa/unit/data/functions/array/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);
|
|
}
|
|
|
|
ArrayFunctionsTest::ArrayFunctionsTest():
|
|
FunctionsTest("sc/qa/unit/data/functions/array/fods/")
|
|
{
|
|
}
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(ArrayFunctionsTest);
|
|
|
|
CPPUNIT_PLUGIN_IMPLEMENT();
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|