diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2011-09-12 15:13:28 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2011-09-12 22:47:49 +0200 |
commit | 23b04dae8b5ff6dbc4c4b63bfe08079ac6ed74ef (patch) | |
tree | 18b609a1c6b9e09da816333b93c72a70f7ad5142 /cppuhelper/test | |
parent | 12e2e04977ddedcb2844b69a5060eb81be84d648 (diff) |
sb140: #i117698# no implementations of XIdlClassProvider remain, so code that checks for it can be removed
Diffstat (limited to 'cppuhelper/test')
-rw-r--r-- | cppuhelper/test/testidlclass.cxx | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/cppuhelper/test/testidlclass.cxx b/cppuhelper/test/testidlclass.cxx index 48ee84ed9101..85d3e7d8420a 100644 --- a/cppuhelper/test/testidlclass.cxx +++ b/cppuhelper/test/testidlclass.cxx @@ -31,7 +31,6 @@ #include <cppuhelper/stdidlclass.hxx> -#include <com/sun/star/reflection/XIdlClassProvider.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> #include "testhelper.hxx" @@ -59,29 +58,6 @@ void testidlclass( const Reference < XMultiServiceFactory > &rSMgr) ); OSL_ASSERT( r.is() ); - - - { // test the xidlclassprovider interface ! - Reference< XIdlClassProvider > rProv( r , UNO_QUERY ); - OSL_ASSERT( rProv.is() ); - - { - Sequence < Reference < XIdlClass > > seq = rProv->getIdlClasses(); - - // is always one - OSL_ASSERT( seq.getLength() == 1 ); - - // test the weak reference - rProv->getIdlClasses(); - - } - - rProv->getIdlClasses(); - - - } - - OSL_ASSERT( r->getName() == sImplName ); // test equals |