Kaydet (Commit) 8ac758d5 authored tarafından Kohei Yoshida's avatar Kohei Yoshida

Test for XPropertySet. This is still work-in-progress.

Change-Id: Icf8ddddb9a45435968bc43d8bc7a033ce5cfd702
üst 8bffba82
......@@ -27,6 +27,7 @@
*/
#include <test/unoapi_test.hxx>
#include <test/beans/xpropertyset.hxx>
#include <test/text/xtextfield.hxx>
#include <test/text/xtextcontent.hxx>
......@@ -38,11 +39,11 @@
#include <com/sun/star/sheet/XSpreadsheetDocument.hpp>
#include <com/sun/star/sheet/XSpreadsheet.hpp>
#define NUMBER_OF_TESTS 3
#define NUMBER_OF_TESTS 5
namespace sc_apitest {
class ScEditFieldObj_Cell : public UnoApiTest, apitest::XTextField, apitest::XTextContent
class ScEditFieldObj_Cell : public UnoApiTest, apitest::XTextField, apitest::XTextContent, apitest::XPropertySet
{
public:
ScEditFieldObj_Cell();
......@@ -55,8 +56,14 @@ public:
virtual bool isAttachSupported() { return true; }
CPPUNIT_TEST_SUITE(ScEditFieldObj_Cell);
// XPropertySet
CPPUNIT_TEST(testGetPropertySetInfo);
CPPUNIT_TEST(testGetPropertyValue);
// XTextField
CPPUNIT_TEST(testGetPresentation);
// XTextContent
CPPUNIT_TEST(testGetAnchor);
CPPUNIT_TEST(testAttach);
......
......@@ -27,6 +27,7 @@
*/
#include <test/unoapi_test.hxx>
#include <test/beans/xpropertyset.hxx>
#include <test/text/xtextfield.hxx>
#include <test/text/xtextcontent.hxx>
......@@ -41,11 +42,11 @@
#include <com/sun/star/sheet/XSpreadsheet.hpp>
#include <com/sun/star/sheet/XHeaderFooterContent.hpp>
#define NUMBER_OF_TESTS 2
#define NUMBER_OF_TESTS 4
namespace sc_apitest {
class ScEditFieldObj_Header : public UnoApiTest, apitest::XTextContent
class ScEditFieldObj_Header : public UnoApiTest, apitest::XTextContent, apitest::XPropertySet
{
public:
ScEditFieldObj_Header();
......@@ -58,6 +59,11 @@ public:
virtual bool isAttachSupported() { return false; }
CPPUNIT_TEST_SUITE(ScEditFieldObj_Header);
// XPropertySet
CPPUNIT_TEST(testGetPropertySetInfo);
CPPUNIT_TEST(testGetPropertyValue);
// XTextContent
CPPUNIT_TEST(testGetAnchor);
CPPUNIT_TEST(testAttach);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment