diff options
author | Jens Carl <j.carl43@gmx.de> | 2018-01-03 00:47:36 +0000 |
---|---|---|
committer | Jens Carl <j.carl43@gmx.de> | 2018-01-03 03:50:34 +0100 |
commit | 23a1c5429c67986a945baab6dae553e58d2d72d9 (patch) | |
tree | 8d7eff8ecb042568e4df8655586fc53284900e6c /sc | |
parent | 6a29d733651eb307ee8a6c3cf1bc64579070e53a (diff) |
tdf#45904 Move _Scenario Java tests to C++
Change-Id: I313f3a56fd99e7fb29e6f729cfe13e99adf1fed6
Reviewed-on: https://gerrit.libreoffice.org/47289
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 | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sc/qa/extras/sctablesheetobj.cxx b/sc/qa/extras/sctablesheetobj.cxx index 9345c3f32a7f..ad859a6a4153 100644 --- a/sc/qa/extras/sctablesheetobj.cxx +++ b/sc/qa/extras/sctablesheetobj.cxx @@ -8,6 +8,7 @@ */ #include <test/calc_unoapi_test.hxx> +#include <test/sheet/scenario.hxx> #include <test/sheet/xcellformatrangessupplier.hxx> #include <test/sheet/xcellrangeaddressable.hxx> #include <test/sheet/xcellseries.hxx> @@ -41,9 +42,10 @@ using namespace css::uno; namespace sc_apitest { -#define NUMBER_OF_TESTS 34 +#define NUMBER_OF_TESTS 35 -class ScTableSheetObj : public CalcUnoApiTest, public apitest::XCellFormatRangesSupplier, +class ScTableSheetObj : public CalcUnoApiTest, public apitest::Scenario, + public apitest::XCellFormatRangesSupplier, public apitest::XCellRangeAddressable, public apitest::XCellSeries, public apitest::XDataPilotTablesSupplier, @@ -79,6 +81,9 @@ public: CPPUNIT_TEST_SUITE(ScTableSheetObj); + // Scenario + CPPUNIT_TEST(testScenarioProperties); + // XCellFormatRangesSupplier CPPUNIT_TEST(testGetCellFormatRanges); |