Bump version to 5.0-14
[LibreOffice.git] / writerperfect / qa / unit / WpftImpressFilterTest.cxx
blob1b5590ac04568de838305ae4debe61765b156aa0
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #include "WpftImportTestBase.hxx"
12 namespace
15 class WpftImpressFilterTest : public writerperfect::test::WpftImportTestBase
17 public:
18 WpftImpressFilterTest();
20 void test();
22 CPPUNIT_TEST_SUITE(WpftImpressFilterTest);
23 CPPUNIT_TEST(test);
24 CPPUNIT_TEST_SUITE_END();
27 WpftImpressFilterTest::WpftImpressFilterTest()
28 : writerperfect::test::WpftImportTestBase("private:factory/simpress")
32 void WpftImpressFilterTest::test()
34 doTest("org.libreoffice.comp.Impress.KeynoteImportFilter", "/writerperfect/qa/unit/data/impress/libetonyek/");
35 doTest("com.sun.star.comp.Impress.MWAWPresentationImportFilter", "/writerperfect/qa/unit/data/impress/libmwaw/");
38 CPPUNIT_TEST_SUITE_REGISTRATION(WpftImpressFilterTest);
42 CPPUNIT_PLUGIN_IMPLEMENT();
44 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */