diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/source/beans/xpropertyset.cxx | 3 | ||||
-rw-r--r-- | test/source/chart/xchartdata.cxx | 3 | ||||
-rw-r--r-- | test/source/diff/diff.cxx | 2 | ||||
-rw-r--r-- | test/source/sheet/xactivationbroadcaster.cxx | 3 | ||||
-rw-r--r-- | test/source/util/xrefreshable.cxx | 3 |
5 files changed, 14 insertions, 0 deletions
diff --git a/test/source/beans/xpropertyset.cxx b/test/source/beans/xpropertyset.cxx index 4abb48c44d88..ac9be2a6f81e 100644 --- a/test/source/beans/xpropertyset.cxx +++ b/test/source/beans/xpropertyset.cxx @@ -40,6 +40,8 @@ XPropertySet::PropsToTest::PropsToTest() { } +namespace +{ class MockedPropertyChangeListener : public ::cppu::WeakImplHelper<beans::XPropertyChangeListener> { public: @@ -75,6 +77,7 @@ public: virtual void SAL_CALL disposing(const lang::EventObject& /* xEventObj */) override {} }; +} void XPropertySet::testPropertyChangeListener() { diff --git a/test/source/chart/xchartdata.cxx b/test/source/chart/xchartdata.cxx index 5f099fde69d6..e7669fbd149a 100644 --- a/test/source/chart/xchartdata.cxx +++ b/test/source/chart/xchartdata.cxx @@ -23,6 +23,8 @@ using namespace css; namespace apitest { +namespace +{ class MockedChartDataChangeEventListener : public ::cppu::WeakImplHelper<chart::XChartDataChangeEventListener> { @@ -40,6 +42,7 @@ public: virtual void SAL_CALL disposing(const lang::EventObject& /* xEvent */) override {} }; +} void XChartData::testGetNotANumber() { diff --git a/test/source/diff/diff.cxx b/test/source/diff/diff.cxx index 483c3954c01a..050c5e457f59 100644 --- a/test/source/diff/diff.cxx +++ b/test/source/diff/diff.cxx @@ -28,6 +28,7 @@ #include <rtl/math.hxx> +namespace { struct tolerance { @@ -95,6 +96,7 @@ private: std::string fileName; }; +} XMLDiff::XMLDiff( const char* pFileName, const char* pContent, int size, const char* pToleranceFile) : xmlFile1(xmlParseFile(pFileName)) diff --git a/test/source/sheet/xactivationbroadcaster.cxx b/test/source/sheet/xactivationbroadcaster.cxx index 8e63e07741c8..f0f9b84c5a62 100644 --- a/test/source/sheet/xactivationbroadcaster.cxx +++ b/test/source/sheet/xactivationbroadcaster.cxx @@ -26,6 +26,8 @@ using namespace com::sun::star::uno; namespace apitest { +namespace +{ class MockedActivationEventListener : public ::cppu::WeakImplHelper<sheet::XActivationEventListener> { public: @@ -41,6 +43,7 @@ public: } virtual void SAL_CALL disposing(const lang::EventObject& /* xEventObj */) override {} }; +} void XActivationBroadcaster::testAddRemoveActivationEventListener() { diff --git a/test/source/util/xrefreshable.cxx b/test/source/util/xrefreshable.cxx index 19d1dc42acb0..4e6d2374a57f 100644 --- a/test/source/util/xrefreshable.cxx +++ b/test/source/util/xrefreshable.cxx @@ -25,6 +25,8 @@ using namespace com::sun::star::uno; namespace apitest { +namespace +{ class MockedRefreshListener : public ::cppu::WeakImplHelper<util::XRefreshListener> { public: @@ -40,6 +42,7 @@ public: } virtual void SAL_CALL disposing(const lang::EventObject& /* xEventObj */) override {} }; +} void XRefreshable::testRefreshListener() { |