LCOV - code coverage report
Current view: top level - testtools/source/bridgetest - constructors.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 298 309 96.4 %
Date: 2014-11-03 Functions: 15 19 78.9 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : 
      21             : #include "sal/config.h"
      22             : 
      23             : #include "boost/noncopyable.hpp"
      24             : #include "com/sun/star/lang/XInitialization.hpp"
      25             : #include "com/sun/star/lang/XComponent.hpp"
      26             : #include "com/sun/star/uno/Any.hxx"
      27             : #include "com/sun/star/uno/Exception.hpp"
      28             : #include "com/sun/star/uno/Reference.hxx"
      29             : #include "com/sun/star/uno/Sequence.hxx"
      30             : #include "com/sun/star/uno/Type.hxx"
      31             : #include "com/sun/star/uno/XComponentContext.hpp"
      32             : #include "com/sun/star/uno/XInterface.hpp"
      33             : #include "cppu/unotype.hxx"
      34             : #include "cppuhelper/factory.hxx"
      35             : #include "cppuhelper/implbase1.hxx"
      36             : #include "cppuhelper/implbase2.hxx"
      37             : #include "cppuhelper/implementationentry.hxx"
      38             : #include "cppuhelper/weak.hxx"
      39             : #include "rtl/string.h"
      40             : #include "rtl/ustring.h"
      41             : #include "rtl/ustring.hxx"
      42             : #include "sal/types.h"
      43             : #include "test/testtools/bridgetest/BadConstructorArguments.hpp"
      44             : #include "test/testtools/bridgetest/TestEnum.hpp"
      45             : #include "test/testtools/bridgetest/TestStruct.hpp"
      46             : #include "test/testtools/bridgetest/TestPolyStruct.hpp"
      47             : #include "test/testtools/bridgetest/TestPolyStruct2.hpp"
      48             : #include "test/testtools/bridgetest/XMultiBase1.hpp"
      49             : 
      50             : namespace {
      51             : 
      52             : namespace ttb = ::test::testtools::bridgetest;
      53             : class Impl:
      54             :     public cppu::WeakImplHelper1<css::lang::XInitialization>,
      55             :     private boost::noncopyable
      56             : {
      57             : public:
      58           4 :     Impl() {}
      59             : 
      60             : private:
      61           8 :     virtual ~Impl() {}
      62             : 
      63             :     virtual void SAL_CALL initialize(
      64             :         css::uno::Sequence< css::uno::Any > const & arguments)
      65             :         throw (css::uno::Exception, std::exception) SAL_OVERRIDE;
      66             : };
      67             : 
      68           4 : void Impl::initialize(css::uno::Sequence< css::uno::Any > const & arguments)
      69             :     throw (css::uno::Exception, std::exception)
      70             : {
      71             :     bool arg0;
      72           4 :     ::sal_Int8 arg1 = sal_Int8();
      73           4 :     ::sal_Int16 arg2 = sal_Int16();
      74           4 :     ::sal_uInt16 arg3 = sal_uInt16();
      75           4 :     ::sal_Int32 arg4 = sal_Int32();
      76           4 :     ::sal_uInt32 arg5 = sal_uInt32();
      77           4 :     ::sal_Int64 arg6 = sal_Int64();
      78           4 :     ::sal_uInt64 arg7 = sal_uInt64();
      79           4 :     float arg8 = float();
      80           4 :     double arg9 = double();
      81           4 :     OUString arg11;
      82           8 :     css::uno::Type arg12;
      83             :     bool arg13;
      84           8 :     css::uno::Sequence< sal_Bool > arg14;
      85           8 :     css::uno::Sequence< ::sal_Int8 > arg15;
      86           8 :     css::uno::Sequence< ::sal_Int16 > arg16;
      87           8 :     css::uno::Sequence< ::sal_uInt16 > arg17;
      88           8 :     css::uno::Sequence< ::sal_Int32 > arg18;
      89           8 :     css::uno::Sequence< ::sal_uInt32 > arg19;
      90           8 :     css::uno::Sequence< ::sal_Int64 > arg20;
      91           8 :     css::uno::Sequence< ::sal_uInt64 > arg21;
      92           8 :     css::uno::Sequence< float > arg22;
      93           8 :     css::uno::Sequence< double > arg23;
      94           8 :     css::uno::Sequence< OUString > arg25;
      95           8 :     css::uno::Sequence< css::uno::Type > arg26;
      96           8 :     css::uno::Sequence< css::uno::Any > arg27;
      97             :     bool arg27b;
      98           8 :     css::uno::Sequence< css::uno::Sequence< sal_Bool > > arg28;
      99           8 :     css::uno::Sequence< css::uno::Sequence< css::uno::Any > > arg29;
     100             :     bool arg29b;
     101           8 :     css::uno::Sequence< ::test::testtools::bridgetest::TestEnum > arg30;
     102           8 :     css::uno::Sequence< ::test::testtools::bridgetest::TestStruct > arg31;
     103             :     css::uno::Sequence<
     104           8 :         ::test::testtools::bridgetest::TestPolyStruct< sal_Bool > > arg32;
     105             :     css::uno::Sequence<
     106           8 :         ::test::testtools::bridgetest::TestPolyStruct< css::uno::Any > > arg33;
     107             :     bool arg33b;
     108           8 :     css::uno::Sequence< css::uno::Reference< css::uno::XInterface > > arg34;
     109             :     ::test::testtools::bridgetest::TestEnum arg35;
     110           4 :     ::test::testtools::bridgetest::TestStruct arg36;
     111           4 :     ::test::testtools::bridgetest::TestPolyStruct< sal_Bool > arg37;
     112           8 :     ::test::testtools::bridgetest::TestPolyStruct< css::uno::Any > arg38;
     113             :     bool arg38b;
     114           8 :     css::uno::Reference< css::uno::XInterface > arg39;
     115           8 :     if (!(arguments.getLength() == 40
     116           4 :           && (arguments[0] >>= arg0) && arg0
     117           4 :           && (arguments[1] >>= arg1) && arg1 == SAL_MIN_INT8
     118           4 :           && (arguments[2] >>= arg2) && arg2 == SAL_MIN_INT16
     119           8 :           && (arguments[3].getValueType()
     120           8 :               == ::cppu::UnoType< ::cppu::UnoUnsignedShortType >::get())
     121           4 :           && (arguments[3] >>= arg3) && arg3 == SAL_MAX_UINT16
     122           4 :           && (arguments[4] >>= arg4) && arg4 == SAL_MIN_INT32
     123           4 :           && (arguments[5] >>= arg5) && arg5 == SAL_MAX_UINT32
     124           4 :           && (arguments[6] >>= arg6) && arg6 == SAL_MIN_INT64
     125           4 :           && (arguments[7] >>= arg7) && arg7 == SAL_MAX_UINT64
     126           4 :           && (arguments[8] >>= arg8) && arg8 == 0.123f
     127           4 :           && (arguments[9] >>= arg9) && arg9 == 0.456
     128           8 :           && (arguments[10].getValueType()
     129           8 :               == ::cppu::UnoType< ::cppu::UnoCharType >::get())
     130           8 :           && (*static_cast< ::sal_Unicode const * >(arguments[10].getValue())
     131           4 :               == 'X')
     132           4 :           && (arguments[11] >>= arg11)
     133           4 :           && arg11 == "test"
     134           4 :           && (arguments[12] >>= arg12)
     135           4 :           && arg12 == ::cppu::UnoType< css::uno::Any >::get()
     136           4 :           && (arguments[13] >>= arg13) && arg13
     137           4 :           && (arguments[14] >>= arg14) && arg14.getLength() == 1 && arg14[0]
     138           4 :           && (arguments[15] >>= arg15) && arg15.getLength() == 1
     139           4 :           && arg15[0] == SAL_MIN_INT8
     140           4 :           && (arguments[16] >>= arg16) && arg16.getLength() == 1
     141           4 :           && arg16[0] == SAL_MIN_INT16
     142           8 :           && (arguments[17].getValueType()
     143           4 :               == ::cppu::UnoType<
     144             :                   ::cppu::UnoSequenceType <
     145           4 :                       ::cppu::UnoUnsignedShortType > >::get())
     146           4 :           && (arguments[17] >>= arg17) && arg17.getLength() == 1
     147           4 :           && arg17[0] == SAL_MAX_UINT16
     148           4 :           && (arguments[18] >>= arg18) && arg18.getLength() == 1
     149           4 :           && arg18[0] == SAL_MIN_INT32
     150           4 :           && (arguments[19] >>= arg19) && arg19.getLength() == 1
     151           4 :           && arg19[0] == SAL_MAX_UINT32
     152           4 :           && (arguments[20] >>= arg20) && arg20.getLength() == 1
     153           4 :           && arg20[0] == SAL_MIN_INT64
     154           4 :           && (arguments[21] >>= arg21) && arg21.getLength() == 1
     155           4 :           && arg21[0] == SAL_MAX_UINT64
     156           4 :           && (arguments[22] >>= arg22) && arg22.getLength() == 1
     157           4 :           && arg22[0] == 0.123f
     158           4 :           && (arguments[23] >>= arg23) && arg23.getLength() == 1
     159           4 :           && arg23[0] == 0.456
     160           8 :           && (arguments[24].getValueType()
     161           4 :               == ::cppu::UnoType<
     162           4 :                   ::cppu::UnoSequenceType< ::cppu::UnoCharType > >::get())
     163           4 :           && (static_cast< css::uno::Sequence< ::sal_Unicode > const * >(
     164           4 :                   arguments[24].getValue())->getLength()
     165             :               == 1)
     166           4 :           && ((*static_cast< css::uno::Sequence< ::sal_Unicode > const * >(
     167           4 :                    arguments[24].getValue()))[0]
     168           4 :               == 'X')
     169           4 :           && (arguments[25] >>= arg25) && arg25.getLength() == 1
     170           4 :           && arg25[0] == "test"
     171           4 :           && (arguments[26] >>= arg26) && arg26.getLength() == 1
     172           4 :           && arg26[0] == ::cppu::UnoType< css::uno::Any >::get()
     173           4 :           && (arguments[27] >>= arg27) && arg27.getLength() == 1
     174           4 :           && (arg27[0] >>= arg27b) && arg27b
     175           4 :           && (arguments[28] >>= arg28) && arg28.getLength() == 1
     176           4 :           && arg28[0].getLength() == 1 && arg28[0][0]
     177           4 :           && (arguments[29] >>= arg29) && arg29.getLength() == 1
     178           4 :           && arg29[0].getLength() == 1 && (arg29[0][0] >>= arg29b) && arg29b
     179           4 :           && (arguments[30] >>= arg30) && arg30.getLength() == 1
     180           4 :           && arg30[0] == ::test::testtools::bridgetest::TestEnum_TWO
     181           4 :           && (arguments[31] >>= arg31) && arg31.getLength() == 1
     182           4 :           && arg31[0].member == 10
     183           4 :           && (arguments[32] >>= arg32) && arg32.getLength() == 1
     184           4 :           && arg32[0].member
     185           4 :           && (arguments[33] >>= arg33) && arg33.getLength() == 1
     186           4 :           && (arg33[0].member >>= arg33b) && arg33b
     187           4 :           && (arguments[34] >>= arg34) && arg34.getLength() == 1
     188           4 :           && !arg34[0].is()
     189           4 :           && (arguments[35] >>= arg35)
     190           4 :           && arg35 == ::test::testtools::bridgetest::TestEnum_TWO
     191           4 :           && (arguments[36] >>= arg36) && arg36.member == 10
     192           4 :           && (arguments[37] >>= arg37) && arg37.member
     193           4 :           && (arguments[38] >>= arg38) && (arg38.member >>= arg38b) && arg38b
     194           8 :           && (arguments[39] >>= arg39) && !arg39.is()))
     195             :     {
     196           0 :         throw ::test::testtools::bridgetest::BadConstructorArguments();
     197           4 :     }
     198           4 : }
     199             : 
     200             : 
     201             : class Impl2: public ::cppu::WeakImplHelper2<
     202             :     css::lang::XInitialization, ttb::XMultiBase1 >
     203             : {
     204             : public:
     205           2 :     Impl2(): m_attr1(0.0) {}
     206             : 
     207             : private:
     208           4 :     virtual ~Impl2() {}
     209             : 
     210             :     virtual void SAL_CALL initialize(
     211             :         css::uno::Sequence< css::uno::Any > const & arguments)
     212             :         throw (css::uno::Exception, std::exception) SAL_OVERRIDE;
     213             : 
     214             :     //XMultiBase1
     215             :     virtual double SAL_CALL getatt1()
     216             :         throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
     217             :     virtual void SAL_CALL setatt1( double _att1 )
     218             :         throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
     219             :     virtual ::sal_Int32 SAL_CALL fn11( ::sal_Int32 arg )
     220             :         throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
     221             :     virtual OUString SAL_CALL fn12( const OUString& arg )
     222             :         throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
     223             : 
     224             : 
     225             :     double m_attr1;
     226             : };
     227             : 
     228           2 : void Impl2::initialize(css::uno::Sequence< css::uno::Any > const & arguments)
     229             :     throw (css::uno::Exception, std::exception)
     230             : {
     231           2 :     ttb::TestPolyStruct< css::uno::Type > arg0;
     232           4 :     ttb::TestPolyStruct< css::uno::Any > arg1;
     233           4 :     css::uno::Any arg1b(sal_True);
     234           2 :     ttb::TestPolyStruct< sal_Bool > arg2;
     235           2 :     ttb::TestPolyStruct< ::sal_Int8 > arg3;
     236           2 :     ttb::TestPolyStruct< ::sal_Int16 > arg4;
     237           2 :     ttb::TestPolyStruct< ::sal_Int32 > arg5;
     238           2 :     ttb::TestPolyStruct< ::sal_Int64 > arg6;
     239           2 :     ttb::TestPolyStruct< ::sal_Unicode > arg7;
     240           4 :     ttb::TestPolyStruct< OUString > arg8;
     241           2 :     ttb::TestPolyStruct< float > arg9;
     242           2 :     ttb::TestPolyStruct< double > arg10;
     243           4 :     ttb::TestPolyStruct<css::uno::Reference<css::uno::XInterface> > arg11;
     244           4 :     ttb::TestPolyStruct<css::uno::Reference< css::lang::XComponent> > arg12;
     245           2 :     ttb::TestPolyStruct<ttb::TestEnum>  arg13;
     246             :     ttb::TestPolyStruct<
     247           4 :           ttb::TestPolyStruct2<sal_Unicode, css::uno::Any> > arg14;
     248             :     ttb::TestPolyStruct< ttb::TestPolyStruct2 <
     249             :         ttb::TestPolyStruct2< sal_Unicode, css::uno::Any >,
     250           4 :         OUString > > arg15;
     251             :     ttb::TestPolyStruct2< OUString,ttb::TestPolyStruct2 <
     252           4 :         ::sal_Unicode, ttb::TestPolyStruct < css::uno::Any > > > arg16;
     253             :     ttb::TestPolyStruct2< ttb::TestPolyStruct2<sal_Unicode, css::uno::Any >,
     254           4 :         ttb::TestPolyStruct<sal_Unicode> > arg17;
     255           4 :     ttb::TestPolyStruct<css::uno::Sequence< css::uno::Type > > arg18;
     256           4 :     ttb::TestPolyStruct<css::uno::Sequence<css::uno::Any> > arg19;
     257           4 :     ttb::TestPolyStruct<css::uno::Sequence< sal_Bool > > arg20;
     258           4 :     ttb::TestPolyStruct<css::uno::Sequence< ::sal_Int8 > > arg21;
     259           4 :     ttb::TestPolyStruct<css::uno::Sequence< ::sal_Int16 > > arg22;
     260           4 :     ttb::TestPolyStruct<css::uno::Sequence< ::sal_Int32 > > arg23;
     261           4 :     ttb::TestPolyStruct<css::uno::Sequence< ::sal_Int64 > > arg24;
     262             : //    ttb::TestPolyStruct<css::uno::Sequence<::sal_Unicode> > arg25;
     263           4 :     ttb::TestPolyStruct<css::uno::Sequence< OUString > > arg26;
     264           4 :     ttb::TestPolyStruct<css::uno::Sequence<float> > arg27;
     265           4 :     ttb::TestPolyStruct<css::uno::Sequence<double> > arg28;
     266           4 :     ttb::TestPolyStruct<css::uno::Sequence<css::uno::Reference<css::uno::XInterface> > > arg29;
     267           4 :     ttb::TestPolyStruct<css::uno::Sequence<css::uno::Reference<css::lang::XComponent> > > arg30;
     268           4 :     ttb::TestPolyStruct<css::uno::Sequence<ttb::TestEnum> >  arg31;
     269             :     ttb::TestPolyStruct<css::uno::Sequence<ttb::TestPolyStruct2<
     270           4 :         ::sal_Unicode, css::uno::Sequence<css::uno::Any> > > > arg32;
     271           2 :     bool arg32a = false;
     272             :     ttb::TestPolyStruct<css::uno::Sequence<ttb::TestPolyStruct2<
     273           4 :         ttb::TestPolyStruct< ::sal_Unicode>, css::uno::Sequence<css::uno::Any> > > > arg33;
     274           4 :     ttb::TestPolyStruct<css::uno::Sequence<css::uno::Sequence< ::sal_Int32> > > arg34;
     275           4 :     css::uno::Sequence<ttb::TestPolyStruct< ::sal_Int32> > arg35;
     276           4 :     css::uno::Sequence<ttb::TestPolyStruct<ttb::TestPolyStruct2< ::sal_Unicode, css::uno::Any> > > arg36;
     277             :     css::uno::Sequence<ttb::TestPolyStruct<ttb::TestPolyStruct2<
     278           4 :         ttb::TestPolyStruct2< ::sal_Unicode,css::uno::Any >, OUString> > > arg37;
     279             :     css::uno::Sequence<ttb::TestPolyStruct2< OUString, ttb::TestPolyStruct2<
     280           4 :         ::sal_Unicode, ttb::TestPolyStruct<css::uno::Any> > > > arg38;
     281             :     css::uno::Sequence<ttb::TestPolyStruct2<ttb::TestPolyStruct2<
     282           4 :         ::sal_Unicode, css::uno::Any>, ttb::TestPolyStruct< ::sal_Unicode> > > arg39;
     283           4 :     css::uno::Sequence<css::uno::Sequence<ttb::TestPolyStruct< ::sal_Unicode> > > arg40;
     284           4 :     css::uno::Sequence<css::uno::Sequence<ttb::TestPolyStruct<ttb::TestPolyStruct2< ::sal_Unicode, css::uno::Any> > > >arg41;
     285             :     css::uno::Sequence<css::uno::Sequence<ttb::TestPolyStruct<
     286           4 :         ttb::TestPolyStruct2<ttb::TestPolyStruct2<sal_Unicode, css::uno::Any>, OUString> > > > arg42;
     287             :     css::uno::Sequence<css::uno::Sequence<ttb::TestPolyStruct2<
     288           4 :         OUString, ttb::TestPolyStruct2< ::sal_Unicode, ttb::TestPolyStruct<css::uno::Any> > > > > arg43;
     289             :     css::uno::Sequence<css::uno::Sequence<ttb::TestPolyStruct2<
     290             :         ttb::TestPolyStruct2< ::sal_Unicode, css::uno::Any>, ttb::TestPolyStruct<
     291           4 :         ::sal_Unicode> > > > arg44;
     292             : 
     293           4 :     if (!(arguments.getLength() == 45
     294           2 :           && (arguments[0] >>= arg0) && arg0.member == cppu::UnoType<sal_Int32>::get()
     295           2 :           && (arguments[1] >>= arg1) && arg1.member == arg1b
     296           2 :           && (arguments[2] >>= arg2) && arg2.member == sal_True
     297           2 :           && (arguments[3] >>= arg3) && arg3.member == SAL_MIN_INT8
     298           2 :           && (arguments[4] >>= arg4) && arg4.member == SAL_MIN_INT16
     299           2 :           && (arguments[5] >>= arg5) && arg5.member == SAL_MIN_INT32
     300           2 :           && (arguments[6] >>= arg6) && arg6.member == SAL_MIN_INT64
     301           2 :           && (arguments[7] >>= arg7) && arg7.member == 'X'
     302           2 :           && (arguments[8] >>= arg8) && arg8.member == "test"
     303           2 :           && (arguments[9] >>= arg9) && arg9.member == 0.123f
     304           2 :           && (arguments[10] >>= arg10) && arg10.member == 0.456
     305           2 :           && (arguments[11] >>= arg11)
     306           2 :           && (arguments[12] >>= arg12)
     307           2 :           && (arguments[13] >>= arg13) && arg13.member == ttb::TestEnum_TWO
     308           2 :           && (arguments[14] >>= arg14) && arg14.member.member1 == 'X' && arg14.member.member2 == arg1b
     309           2 :           && (arguments[15] >>= arg15) && arg15.member.member1.member1 == 'X'
     310           2 :           && arg15.member.member1.member2 == arg1b
     311           2 :           && arg15.member.member2 == "test"
     312           2 :           && (arguments[16] >>= arg16) && arg16.member1 == "test"
     313           2 :           && arg16.member2.member1 == 'X'
     314           2 :           && arg16.member2.member2.member == arg1b
     315           2 :           && (arguments[17] >>= arg17) && arg17.member1.member1 == 'X'
     316           2 :           && arg17.member1.member2 == arg1b
     317           2 :           && arg17.member2.member == 'X'
     318           2 :           && (arguments[18] >>= arg18)  && arg18.member.getLength() == 1
     319           2 :           && arg18.member[0] == ::cppu::UnoType<sal_Int32>::get()
     320           2 :           && (arguments[19] >>= arg19) && arg19.member.getLength() == 1
     321           2 :           && arg19.member[0] == arg1b
     322           2 :           && (arguments[20] >>= arg20) && arg20.member.getLength() == 1
     323           2 :           && arg20.member[0] == sal_True
     324           2 :           && (arguments[21] >>= arg21) && arg21.member.getLength() == 1
     325           2 :           && arg21.member[0] == SAL_MIN_INT8
     326           2 :           && (arguments[22] >>= arg22) && arg22.member.getLength() == 1
     327           2 :           && arg22.member[0] == SAL_MIN_INT16
     328           2 :           && (arguments[23] >>= arg23) && arg23.member.getLength() == 1
     329           2 :           && arg23.member[0] == SAL_MIN_INT32
     330           2 :           && (arguments[24] >>= arg24) && arg24.member.getLength() == 1
     331           2 :           && arg24.member[0] == SAL_MIN_INT64
     332           4 :           && (arguments[25].getValueType()
     333           2 :                == ::cppu::UnoType< ttb::TestPolyStruct< ::cppu::UnoSequenceType<
     334           2 :               ::cppu::UnoCharType> > >::get())
     335           2 :           && (static_cast< ttb::TestPolyStruct<css::uno::Sequence<
     336           2 :               ::sal_Unicode> > const *>(arguments[25].getValue())->member[0]) == 'X'
     337           2 :           && (arguments[26] >>= arg26) && arg26.member.getLength() == 1
     338           2 :           && arg26.member[0] == "test"
     339           2 :           && (arguments[27] >>= arg27) && arg27.member.getLength() == 1
     340           2 :           && arg27.member[0] == 0.123f
     341           2 :           && (arguments[28] >>= arg28) && arg28.member.getLength() == 1
     342           2 :           && arg28.member[0] == 0.456
     343           2 :           && (arguments[29] >>= arg29) && arg29.member.getLength() == 1
     344           2 :           && arg29.member[0] != NULL
     345           2 :           && (arguments[30] >>= arg30) && arg30.member.getLength() == 1
     346           2 :           && arg30.member[0] != NULL
     347           2 :           && (arguments[31] >>= arg31) && arg31.member.getLength() == 1
     348           2 :           && arg31.member[0] == ttb::TestEnum_TWO
     349           2 :           && (arguments[32] >>= arg32) && arg32.member.getLength() == 1
     350           2 :           && arg32.member[0].member1 == 'X'
     351           2 :           && arg32.member[0].member2.getLength() == 1
     352           2 :           && (arg32.member[0].member2[0] >>= arg32a) && arg32a == true
     353           2 :           && (arguments[33] >>= arg33) && arg33.member.getLength() == 1
     354           2 :           && arg33.member[0].member1.member == 'X'
     355           2 :           && arg33.member[0].member2.getLength() == 1
     356           2 :           && arg33.member[0].member2[0] == arg1b
     357           2 :           && (arguments[34] >>= arg34) && arg34.member.getLength() == 1
     358           2 :           && arg34.member[0].getLength() == 1 && arg34.member[0][0] == SAL_MIN_INT32
     359           2 :           && (arguments[35] >>= arg35) && arg35.getLength() == 1
     360           2 :           && arg35[0].member == SAL_MIN_INT32
     361           2 :           && (arguments[36] >>= arg36) && arg36.getLength() == 1
     362           2 :           && arg36[0].member.member1 == 'X'
     363           2 :           && arg36[0].member.member2 == arg1b
     364           2 :           && (arguments[37] >>= arg37) && arg37.getLength() == 1
     365           2 :           && arg37[0].member.member1.member1 == 'X'
     366           2 :           && arg37[0].member.member1.member2 == arg1b
     367           2 :           && arg37[0].member.member2 == "test"
     368           2 :           && (arguments[38] >>= arg38) && arg38.getLength() == 1
     369           2 :           && arg38[0].member1 == "test"
     370           2 :           && arg38[0].member2.member1 == 'X'
     371           2 :           && arg38[0].member2.member2.member == arg1b
     372           2 :           && (arguments[39] >>= arg39) && arg39.getLength() == 1
     373           2 :           && arg39[0].member1.member1 == 'X'
     374           2 :           && arg39[0].member1.member2 == arg1b
     375           2 :           && arg39[0].member2.member == 'X'
     376           2 :           && (arguments[40] >>= arg40) && arg40.getLength() == 1
     377           2 :           && arg40[0].getLength() == 1
     378           2 :           && arg40[0][0].member == 'X'
     379           2 :           && (arguments[41] >>= arg41) && arg41.getLength() == 1
     380           2 :           && arg41[0].getLength() == 1
     381           2 :           && arg41[0][0].member.member1 == 'X'
     382           2 :           && arg41[0][0].member.member2 == arg1b
     383           2 :           && (arguments[42] >>= arg42) && arg42.getLength() == 1
     384           2 :           && arg42[0].getLength() == 1
     385           2 :           && arg42[0][0].member.member1.member1 == 'X'
     386           2 :           && arg42[0][0].member.member1.member2 == arg1b
     387           2 :           && arg42[0][0].member.member2 == "test"
     388           2 :           && (arguments[43] >>= arg43) && arg43.getLength() == 1
     389           2 :           && arg43[0].getLength() == 1
     390           2 :           && arg43[0][0].member1 == "test"
     391           2 :           && arg43[0][0].member2.member1 == 'X'
     392           2 :           && arg43[0][0].member2.member2.member == arg1b
     393           2 :           && (arguments[44] >>= arg44) && arg44.getLength() == 1
     394           2 :           && arg44[0].getLength() == 1
     395           2 :           && arg44[0][0].member1.member1 == 'X'
     396           2 :           && arg44[0][0].member1.member2 == arg1b
     397           2 :           && arg44[0][0].member2.member == 'X'
     398           4 :             ))
     399             :     {
     400           0 :         throw ::test::testtools::bridgetest::BadConstructorArguments();
     401             :     }
     402             : 
     403             :     //check if interfaces work
     404           2 :     arg11.member->acquire();
     405           2 :     arg11.member->release();
     406           2 :     arg12.member->acquire();
     407           2 :     arg12.member->release();
     408           2 :     arg29.member[0]->acquire();
     409           4 :     arg29.member[0]->release();
     410             : 
     411           2 : }
     412             : 
     413             : //XMultiBase1
     414           0 : double Impl2::getatt1()
     415             :         throw (::com::sun::star::uno::RuntimeException, std::exception)
     416             : {
     417           0 :     return m_attr1;
     418             : }
     419             : 
     420           0 : void Impl2::setatt1( double _att1 )throw (::com::sun::star::uno::RuntimeException, std::exception)
     421             : {
     422           0 :     m_attr1 = _att1;
     423           0 : }
     424             : 
     425           0 : ::sal_Int32 Impl2::fn11( ::sal_Int32 arg )
     426             :         throw (::com::sun::star::uno::RuntimeException, std::exception)
     427             : {
     428           0 :     return 11 * arg;
     429             : }
     430             : 
     431           0 : OUString Impl2::fn12( const OUString& arg )
     432             :         throw (::com::sun::star::uno::RuntimeException, std::exception)
     433             : {
     434           0 :     return OUString("12") + arg;
     435             : }
     436             : 
     437           4 : css::uno::Reference< css::uno::XInterface > SAL_CALL create(
     438             :     SAL_UNUSED_PARAMETER css::uno::Reference< css::uno::XComponentContext >
     439             :         const &)
     440             : {
     441           4 :     return static_cast< ::cppu::OWeakObject * >(new Impl);
     442             : }
     443             : 
     444           4 : OUString SAL_CALL getImplementationName() {
     445             :     return OUString(
     446           4 :             "comp.test.testtools.bridgetest.Constructors");
     447             : }
     448             : 
     449           2 : css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() {
     450           2 :     css::uno::Sequence< OUString > s(1);
     451           2 :     s[0] = "test.testtools.bridgetest.Constructors";
     452           2 :     return s;
     453             : }
     454             : 
     455           2 : css::uno::Reference< css::uno::XInterface > SAL_CALL create2(
     456             :     SAL_UNUSED_PARAMETER css::uno::Reference< css::uno::XComponentContext >
     457             :         const &)
     458             : {
     459           2 :     return static_cast< ::cppu::OWeakObject * >(new Impl2);
     460             : }
     461             : 
     462           4 : OUString SAL_CALL getImplementationName2() {
     463             :     return OUString(
     464           4 :             "comp.test.testtools.bridgetest.Constructors2");
     465             : }
     466             : 
     467           2 : css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames2() {
     468           2 :     css::uno::Sequence< OUString > s(1);
     469           2 :     s[0] = "test.testtools.bridgetest.Constructors2";
     470           2 :     return s;
     471             : }
     472             : 
     473             : ::cppu::ImplementationEntry entries[] = {
     474             :     { &create, &getImplementationName, &getSupportedServiceNames,
     475             :       &::cppu::createSingleComponentFactory, 0, 0 },
     476             :     { &create2, &getImplementationName2, &getSupportedServiceNames2,
     477             :       &::cppu::createSingleComponentFactory, 0, 0 },
     478             :     { 0, 0, 0, 0, 0, 0 } };
     479             : }
     480             : 
     481           4 : extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL component_getFactory(
     482             :     char const * implName, void * serviceManager, void * registryKey)
     483             : {
     484             :     return ::cppu::component_getFactoryHelper(
     485           4 :         implName, serviceManager, registryKey, entries);
     486             : }
     487             : 
     488             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10