diff options
author | Jens Carl <j.carl43@gmx.de> | 2018-11-30 20:55:34 +0000 |
---|---|---|
committer | Jens Carl <j.carl43@gmx.de> | 2018-12-01 03:03:15 +0100 |
commit | 71636d5606116e432a69b03d85c4282a6452c7fb (patch) | |
tree | 4216c9877503de8541aa7b9c7476097ed923c9ea /include | |
parent | ee8cba8591f2d610f8193d91039c9657e697f7db (diff) |
Enable XElementAccess test cases
The class XElementAccess was missing the macro OOO_DLLPUBLIC_TEST,
and so it wasn't possible to use these test cases.
Change-Id: I358bb840c6088ea25b60ee57b8c69f31ab71ddbb
Reviewed-on: https://gerrit.libreoffice.org/64363
Tested-by: Jenkins
Reviewed-by: Jens Carl <j.carl43@gmx.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/test/container/xelementaccess.hxx | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/include/test/container/xelementaccess.hxx b/include/test/container/xelementaccess.hxx index efdca128fe79..d9796a2f6c86 100644 --- a/include/test/container/xelementaccess.hxx +++ b/include/test/container/xelementaccess.hxx @@ -1,4 +1,4 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ /* * This file is part of the LibreOffice project. * @@ -10,29 +10,37 @@ #ifndef INCLUDED_TEST_CONTAINER_XELEMENTACCESS_HXX #define INCLUDED_TEST_CONTAINER_XELEMENTACCESS_HXX -#include <com/sun/star/uno/Type.hxx> +#include <com/sun/star/uno/XInterface.hpp> + #include <com/sun/star/uno/Reference.hxx> +#include <com/sun/star/uno/Type.hxx> -namespace apitest { +#include <test/testdllapi.hxx> -class XElementAccess +namespace apitest +{ +class OOO_DLLPUBLIC_TEST XElementAccess { public: - XElementAccess(css::uno::Type const & rType): maType(rType) {} + XElementAccess(css::uno::Type const& rType) + : m_aType(rType) + { + } void testGetElementType(); void testHasElements(); - virtual css::uno::Reference< css::uno::XInterface > init() = 0; + virtual css::uno::Reference<css::uno::XInterface> init() = 0; - virtual ~XElementAccess() {} +protected: + ~XElementAccess() {} private: - css::uno::Type const maType; + css::uno::Type const m_aType; }; -} +} // namespace apitest #endif // INCLUDED_TEST_CONTAINER_XELEMENTACCESS_HXX -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ +/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ |