diff options
author | Jens Carl <j.carl43@gmx.de> | 2017-11-15 05:09:23 +0000 |
---|---|---|
committer | Jens Carl <j.carl43@gmx.de> | 2017-11-15 08:37:27 +0100 |
commit | 1dde2e441451ba6e7d760b1e1544440113993c24 (patch) | |
tree | 3e4b49b9f4fa0dccc2b7241945e3c407eecc38aa /sc | |
parent | 3588a48a82d37f940595570758bc1d1179d18b84 (diff) |
tdf#45904 Move _XSheetAnnotationsSupplier Java test to C++
Change-Id: I18143d96f49ea4f4b80ae89df33d2963bb20e125
Reviewed-on: https://gerrit.libreoffice.org/44747
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Jens Carl <j.carl43@gmx.de>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/extras/sctablesheetobj.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sc/qa/extras/sctablesheetobj.cxx b/sc/qa/extras/sctablesheetobj.cxx index 11c49feca4e2..64decbb96675 100644 --- a/sc/qa/extras/sctablesheetobj.cxx +++ b/sc/qa/extras/sctablesheetobj.cxx @@ -10,6 +10,7 @@ #include <test/calc_unoapi_test.hxx> #include <test/sheet/xcellseries.hxx> #include <test/sheet/xprintareas.hxx> +#include <test/sheet/xsheetannotationssupplier.hxx> #include <test/sheet/xsheetcellrange.hxx> #include <test/sheet/xsheetfilterable.hxx> #include <test/sheet/xsheetfilterableex.hxx> @@ -31,12 +32,13 @@ using namespace css::uno; namespace sc_apitest { -#define NUMBER_OF_TESTS 23 +#define NUMBER_OF_TESTS 24 class ScTableSheetObj : public CalcUnoApiTest, public apitest::XCellSeries, public apitest::XPrintAreas, public apitest::XReplaceable, public apitest::XSearchable, + public apitest::XSheetAnnotationsSupplier, public apitest::XSheetCellRange, public apitest::XSheetFilterable, public apitest::XSheetFilterableEx, @@ -72,6 +74,9 @@ public: CPPUNIT_TEST(testReplaceAll); CPPUNIT_TEST(testCreateReplaceDescriptor); + // XSheetAnnotationsSupplier + CPPUNIT_TEST(testGetAnnotations); + // XSearchable CPPUNIT_TEST(testFindAll); CPPUNIT_TEST(testFindNext); |