diff options
author | Jens Carl <j.carl43@gmx.de> | 2019-06-19 05:18:55 +0000 |
---|---|---|
committer | Jens Carl <j.carl43@gmx.de> | 2019-06-19 08:10:10 +0200 |
commit | 0e73f9eb415793c1c7503021c40fd746b2ef7ba2 (patch) | |
tree | b6198804828e72c1605187bde5bbe2ca237d23b3 /include | |
parent | 7e500a001493e09480e5382337c7e8c7de168dba (diff) |
tdf#45904 Move XShape Java tests to C++
Move XShape Java tests to C++ for ScShapeObj.
Change-Id: I349c4abb09c3e9e43285b63ee5f19f55d967b38f
Reviewed-on: https://gerrit.libreoffice.org/74331
Tested-by: Jenkins
Reviewed-by: Jens Carl <j.carl43@gmx.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/test/drawing/xshape.hxx | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/include/test/drawing/xshape.hxx b/include/test/drawing/xshape.hxx new file mode 100644 index 000000000000..7da565355635 --- /dev/null +++ b/include/test/drawing/xshape.hxx @@ -0,0 +1,41 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#pragma once + +#include <com/sun/star/uno/XInterface.hpp> + +#include <com/sun/star/uno/Reference.hxx> + +#include <test/testdllapi.hxx> + +namespace apitest +{ +class OOO_DLLPUBLIC_TEST XShape +{ +public: + XShape(bool bObjSupportsPosition = true) + : m_bObjSupportsPosition(bObjSupportsPosition) + { + } + virtual css::uno::Reference<css::uno::XInterface> init() = 0; + + void testGetSetPosition(); + void testGetSetSize(); + +protected: + ~XShape() {} + +private: + bool const m_bObjSupportsPosition; +}; + +} // namespace apitest + +/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ |