1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
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/.
10 #include <test/unoapi_test.hxx>
11 #include <test/sheet/xrecentfunctions.hxx>
13 #include <com/sun/star/lang/XComponent.hpp>
14 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
15 #include <com/sun/star/sheet/XSpreadsheetDocument.hpp>
16 #include <com/sun/star/uno/XInterface.hpp>
18 #include <com/sun/star/uno/Reference.hxx>
21 using namespace css::uno
;
22 using namespace com::sun::star
;
26 class ScRecentFunctionsObj
: public UnoApiTest
, public apitest::XRecentFunctions
29 ScRecentFunctionsObj();
31 virtual uno::Reference
<uno::XInterface
> init() override
;
32 virtual void setUp() override
;
34 CPPUNIT_TEST_SUITE(ScRecentFunctionsObj
);
37 CPPUNIT_TEST(testGetRecentFunctionIds
);
38 CPPUNIT_TEST(testSetRecentFunctionIds
);
39 CPPUNIT_TEST(testGetMaxRecentFunctions
);
41 CPPUNIT_TEST_SUITE_END();
44 ScRecentFunctionsObj::ScRecentFunctionsObj()
45 : UnoApiTest("/sc/qa/extras/testdocuments")
49 uno::Reference
<uno::XInterface
> ScRecentFunctionsObj::init()
51 uno::Reference
<sheet::XSpreadsheetDocument
> xDoc(mxComponent
, UNO_QUERY_THROW
);
52 uno::Reference
<lang::XMultiServiceFactory
> xMSF(xDoc
, UNO_QUERY_THROW
);
53 return xMSF
->createInstance("com.sun.star.sheet.RecentFunctions");
56 void ScRecentFunctionsObj::setUp()
59 // create a calc document
60 mxComponent
= loadFromDesktop("private:factory/scalc");
63 CPPUNIT_TEST_SUITE_REGISTRATION(ScRecentFunctionsObj
);
67 CPPUNIT_PLUGIN_IMPLEMENT();
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */