diff options
author | Jens Carl <j.carl43@gmx.de> | 2017-11-03 05:16:30 +0000 |
---|---|---|
committer | Jens Carl <j.carl43@gmx.de> | 2017-11-03 08:57:05 +0100 |
commit | c3965b1ce4428a97a8050a7bc53d60b642062502 (patch) | |
tree | 34a973013fa0bc02be4dec7ede13397d7dbb9012 /include/test | |
parent | 646448dda41484dfa936f906356d7c58c8a28605 (diff) |
tdf#45904 Move Java _XSheetCellRange tests to C++
Change-Id: Ia4534f083a804d450ac8fdd31759f1554b684e15
Reviewed-on: https://gerrit.libreoffice.org/44245
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Jens Carl <j.carl43@gmx.de>
Diffstat (limited to 'include/test')
-rw-r--r-- | include/test/sheet/xsheetcellrange.hxx | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/include/test/sheet/xsheetcellrange.hxx b/include/test/sheet/xsheetcellrange.hxx new file mode 100644 index 000000000000..80fd064b7832 --- /dev/null +++ b/include/test/sheet/xsheetcellrange.hxx @@ -0,0 +1,36 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * 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/. + */ + +#ifndef INCLUDED_TEST_SHEET_XSHEETCELLRANGE_HXX +#define INCLUDED_TEST_SHEET_XSHEETCELLRANGE_HXX + + +#include <com/sun/star/uno/XInterface.hpp> +#include <com/sun/star/uno/Reference.hxx> + +#include <test/testdllapi.hxx> + +namespace apitest { + +class OOO_DLLPUBLIC_TEST XSheetCellRange +{ +public: + virtual css::uno::Reference< css::uno::XInterface > init() =0; + + void testGetSpreadsheet(); + +protected: + ~XSheetCellRange() {} +}; + +} + +#endif // INCLUDED_TEST_SHEET_XSHEETCELLRANGE_HXX + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |