diff options
author | Jens Carl <j.carl43@gmx.de> | 2019-04-18 14:47:40 -0700 |
---|---|---|
committer | Jens Carl <j.carl43@gmx.de> | 2019-04-19 05:00:46 +0200 |
commit | eb7a731bcfbacec15b77889f0ac545d36ef5ad19 (patch) | |
tree | e83dc675e832e6ab420bb6ddebb1199b9f9e99b5 /include/test/chart | |
parent | 68bc7b4795d72e9e099219d1e933e6843b7813d1 (diff) |
tdf#45904 Move XChartData Java tests to C++
Fix tdf#43309: Move XChartData Java tests to C++ for ScCellRangeObj.
Change-Id: I6b57db53fdddab2ff382354d32809404224a2e1e
Reviewed-on: https://gerrit.libreoffice.org/70956
Tested-by: Jenkins
Reviewed-by: Jens Carl <j.carl43@gmx.de>
Diffstat (limited to 'include/test/chart')
-rw-r--r-- | include/test/chart/xchartdata.hxx | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/include/test/chart/xchartdata.hxx b/include/test/chart/xchartdata.hxx new file mode 100644 index 000000000000..315d727ed5a3 --- /dev/null +++ b/include/test/chart/xchartdata.hxx @@ -0,0 +1,35 @@ +/* -*- 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 XChartData +{ +public: + virtual css::uno::Reference<css::uno::XInterface> init() = 0; + + void testChartDataChangeEventListener(); + void testGetNotANumber(); + void testIsNotANumber(); + +protected: + ~XChartData() {} +}; + +} // namespace apitest + +/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ |