diff options
author | Jens Carl <j.carl43@gmx.de> | 2019-04-02 21:14:33 +0000 |
---|---|---|
committer | Jens Carl <j.carl43@gmx.de> | 2019-04-03 00:39:08 +0200 |
commit | cc9a8c13dad6f3d82a2386554bd6113b486a1752 (patch) | |
tree | 467a41e0bb94d07d00c57604301859bfcfeb158f /sc/qa/extras | |
parent | ee268253163c4f9f00fd5182c97d9d488c637dfc (diff) |
tdf#45904 Move TableRow Java tests to C++
Move TableRow Java tests to C++ for ScTableRowObj.
Change-Id: I72cd8006b8ad932bab56681de9aac66fb40542fe
Reviewed-on: https://gerrit.libreoffice.org/70159
Tested-by: Jenkins
Reviewed-by: Jens Carl <j.carl43@gmx.de>
Diffstat (limited to 'sc/qa/extras')
-rw-r--r-- | sc/qa/extras/sctablerowobj.cxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sc/qa/extras/sctablerowobj.cxx b/sc/qa/extras/sctablerowobj.cxx index 381c4dc3a78c..d264d24ca69f 100644 --- a/sc/qa/extras/sctablerowobj.cxx +++ b/sc/qa/extras/sctablerowobj.cxx @@ -9,6 +9,7 @@ #include <test/calc_unoapi_test.hxx> #include <test/beans/xpropertyset.hxx> +#include <test/table/tablerow.hxx> #include <com/sun/star/container/XIndexAccess.hpp> #include <com/sun/star/lang/XComponent.hpp> @@ -25,7 +26,7 @@ using namespace css; namespace sc_apitest { -class ScTableRowObj : public CalcUnoApiTest, public apitest::XPropertySet +class ScTableRowObj : public CalcUnoApiTest, public apitest::TableRow, public apitest::XPropertySet { public: ScTableRowObj(); @@ -36,6 +37,9 @@ public: CPPUNIT_TEST_SUITE(ScTableRowObj); + // TableRow + CPPUNIT_TEST(testTableRowProperties); + // XPropertySet CPPUNIT_TEST(testGetPropertySetInfo); CPPUNIT_TEST(testGetPropertyValue); |