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