LCOV - code coverage report
Current view: top level - testtools/source/bridgetest - constructors.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 298 309 96.4 %
Date: 2015-06-13 12:38:46 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           2 :     Impl() {}
      59             : 
      60             : private:
      61           4 :     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           2 : void Impl::initialize(css::uno::Sequence< css::uno::Any > const & arguments)
      69             :     throw (css::uno::Exception, std::exception)
      70             : {
      71             :     bool arg0;
      72           2 :     ::sal_Int8 arg1 = sal_Int8();
      73           2 :     ::sal_Int16 arg2 = sal_Int16();
      74           2 :     ::sal_uInt16 arg3 = sal_uInt16();
      75           2 :     ::sal_Int32 arg4 = sal_Int32();
      76           2 :     ::sal_uInt32 arg5 = sal_uInt32();
      77           2 :     ::sal_Int64 arg6 = sal_Int64();
      78           2 :     ::sal_uInt64 arg7 = sal_uInt64();
      79           2 :     float arg8 = float();
      80           2 :     double arg9 = double();
      81           2 :     OUString arg11;
      82           4 :     css::uno::Type arg12;
      83             :     bool arg13;
      84           4 :     css::uno::Sequence< sal_Bool > arg14;
      85           4 :     css::uno::Sequence< ::sal_Int8 > arg15;
      86           4 :     css::uno::Sequence< ::sal_Int16 > arg16;
      87           4 :     css::uno::Sequence< ::sal_uInt16 > arg17;
      88           4 :     css::uno::Sequence< ::sal_Int32 > arg18;
      89           4 :     css::uno::Sequence< ::sal_uInt32 > arg19;
      90           4 :     css::uno::Sequence< ::sal_Int64 > arg20;
      91           4 :     css::uno::Sequence< ::sal_uInt64 > arg21;
      92           4 :     css::uno::Sequence< float > arg22;
      93           4 :     css::uno::Sequence< double > arg23;
      94           4 :     css::uno::Sequence< OUString > arg25;
      95           4 :     css::uno::Sequence< css::uno::Type > arg26;
      96           4 :     css::uno::Sequence< css::uno::Any > arg27;
      97             :     bool arg27b;
      98           4 :     css::uno::Sequence< css::uno::Sequence< sal_Bool > > arg28;
      99           4 :     css::uno::Sequence< css::uno::Sequence< css::uno::Any > > arg29;
     100             :     bool arg29b;
     101           4 :     css::uno::Sequence< ::test::testtools::bridgetest::TestEnum > arg30;
     102           4 :     css::uno::Sequence< ::test::testtools::bridgetest::TestStruct > arg31;
     103             :     css::uno::Sequence<
     104           4 :         ::test::testtools::bridgetest::TestPolyStruct< sal_Bool > > arg32;
     105             :     css::uno::Sequence<
     106           4 :         ::test::testtools::bridgetest::TestPolyStruct< css::uno::Any > > arg33;
     107             :     bool arg33b;
     108           4 :     css::uno::Sequence< css::uno::Reference< css::uno::XInterface > > arg34;
     109             :     ::test::testtools::bridgetest::TestEnum arg35;
     110           2 :     ::test::testtools::bridgetest::TestStruct arg36;
     111           2 :     ::test::testtools::bridgetest::TestPolyStruct< sal_Bool > arg37;
     112           4 :     ::test::testtools::bridgetest::TestPolyStruct< css::uno::Any > arg38;
     113             :     bool arg38b;
     114           4 :     css::uno::Reference< css::uno::XInterface > arg39;
     115           4 :     if (!(arguments.getLength() == 40
     116           2 :           && (arguments[0] >>= arg0) && arg0
     117           2 :           && (arguments[1] >>= arg1) && arg1 == SAL_MIN_INT8
     118           2 :           && (arguments[2] >>= arg2) && arg2 == SAL_MIN_INT16
     119           4 :           && (arguments[3].getValueType()
     120           4 :               == ::cppu::UnoType< ::cppu::UnoUnsignedShortType >::get())
     121           2 :           && (arguments[3] >>= arg3) && arg3 == SAL_MAX_UINT16
     122           2 :           && (arguments[4] >>= arg4) && arg4 == SAL_MIN_INT32
     123           2 :           && (arguments[5] >>= arg5) && arg5 == SAL_MAX_UINT32
     124           2 :           && (arguments[6] >>= arg6) && arg6 == SAL_MIN_INT64
     125           2 :           && (arguments[7] >>= arg7) && arg7 == SAL_MAX_UINT64
     126           2 :           && (arguments[8] >>= arg8) && arg8 == 0.123f
     127           2 :           && (arguments[9] >>= arg9) && arg9 == 0.456
     128           4 :           && (arguments[10].getValueType()
     129           4 :               == ::cppu::UnoType< ::cppu::UnoCharType >::get())
     130           4 :           && (*static_cast< ::sal_Unicode const * >(arguments[10].getValue())
     131           2 :               == 'X')
     132           2 :           && (arguments[11] >>= arg11)
     133           2 :           && arg11 == "test"
     134           2 :           && (arguments[12] >>= arg12)
     135           2 :           && arg12 == ::cppu::UnoType< css::uno::Any >::get()
     136           2 :           && (arguments[13] >>= arg13) && arg13
     137           2 :           && (arguments[14] >>= arg14) && arg14.getLength() == 1 && arg14[0]
     138           2 :           && (arguments[15] >>= arg15) && arg15.getLength() == 1
     139           2 :           && arg15[0] == SAL_MIN_INT8
     140           2 :           && (arguments[16] >>= arg16) && arg16.getLength() == 1
     141           2 :           && arg16[0] == SAL_MIN_INT16
     142           4 :           && (arguments[17].getValueType()
     143           2 :               == ::cppu::UnoType<
     144             :                   ::cppu::UnoSequenceType <
     145           2 :                       ::cppu::UnoUnsignedShortType > >::get())
     146           2 :           && (arguments[17] >>= arg17) && arg17.getLength() == 1
     147           2 :           && arg17[0] == SAL_MAX_UINT16
     148           2 :           && (arguments[18] >>= arg18) && arg18.getLength() == 1
     149           2 :           && arg18[0] == SAL_MIN_INT32
     150           2 :           && (arguments[19] >>= arg19) && arg19.getLength() == 1
     151           2 :           && arg19[0] == SAL_MAX_UINT32
     152           2 :           && (arguments[20] >>= arg20) && arg20.getLength() == 1
     153           2 :           && arg20[0] == SAL_MIN_INT64
     154           2 :           && (arguments[21] >>= arg21) && arg21.getLength() == 1
     155           2 :           && arg21[0] == SAL_MAX_UINT64
     156           2 :           && (arguments[22] >>= arg22) && arg22.getLength() == 1
     157           2 :           && arg22[0] == 0.123f
     158           2 :           && (arguments[23] >>= arg23) && arg23.getLength() == 1
     159           2 :           && arg23[0] == 0.456
     160           4 :           && (arguments[24].getValueType()
     161           2 :               == ::cppu::UnoType<
     162           2 :                   ::cppu::UnoSequenceType< ::cppu::UnoCharType > >::get())
     163           2 :           && (static_cast< css::uno::Sequence< ::sal_Unicode > const * >(
     164           2 :                   arguments[24].getValue())->getLength()
     165             :               == 1)
     166           2 :           && ((*static_cast< css::uno::Sequence< ::sal_Unicode > const * >(
     167           2 :                    arguments[24].getValue()))[0]
     168           2 :               == 'X')
     169           2 :           && (arguments[25] >>= arg25) && arg25.getLength() == 1
     170           2 :           && arg25[0] == "test"
     171           2 :           && (arguments[26] >>= arg26) && arg26.getLength() == 1
     172           2 :           && arg26[0] == ::cppu::UnoType< css::uno::Any >::get()
     173           2 :           && (arguments[27] >>= arg27) && arg27.getLength() == 1
     174           2 :           && (arg27[0] >>= arg27b) && arg27b
     175           2 :           && (arguments[28] >>= arg28) && arg28.getLength() == 1
     176           2 :           && arg28[0].getLength() == 1 && arg28[0][0]
     177           2 :           && (arguments[29] >>= arg29) && arg29.getLength() == 1
     178           2 :           && arg29[0].getLength() == 1 && (arg29[0][0] >>= arg29b) && arg29b
     179           2 :           && (arguments[30] >>= arg30) && arg30.getLength() == 1
     180           2 :           && arg30[0] == ::test::testtools::bridgetest::TestEnum_TWO
     181           2 :           && (arguments[31] >>= arg31) && arg31.getLength() == 1
     182           2 :           && arg31[0].member == 10
     183           2 :           && (arguments[32] >>= arg32) && arg32.getLength() == 1
     184           2 :           && arg32[0].member
     185           2 :           && (arguments[33] >>= arg33) && arg33.getLength() == 1
     186           2 :           && (arg33[0].member >>= arg33b) && arg33b
     187           2 :           && (arguments[34] >>= arg34) && arg34.getLength() == 1
     188           2 :           && !arg34[0].is()
     189           2 :           && (arguments[35] >>= arg35)
     190           2 :           && arg35 == ::test::testtools::bridgetest::TestEnum_TWO
     191           2 :           && (arguments[36] >>= arg36) && arg36.member == 10
     192           2 :           && (arguments[37] >>= arg37) && arg37.member
     193           2 :           && (arguments[38] >>= arg38) && (arg38.member >>= arg38b) && arg38b
     194           4 :           && (arguments[39] >>= arg39) && !arg39.is()))
     195             :     {
     196           0 :         throw ::test::testtools::bridgetest::BadConstructorArguments();
     197           2 :     }
     198           2 : }
     199             : 
     200             : 
     201             : class Impl2: public ::cppu::WeakImplHelper2<
     202             :     css::lang::XInitialization, ttb::XMultiBase1 >
     203             : {
     204             : public:
     205           1 :     Impl2(): m_attr1(0.0) {}
     206             : 
     207             : private:
     208           2 :     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           1 : void Impl2::initialize(css::uno::Sequence< css::uno::Any > const & arguments)
     229             :     throw (css::uno::Exception, std::exception)
     230             : {
     231           1 :     ttb::TestPolyStruct< css::uno::Type > arg0;
     232           2 :     ttb::TestPolyStruct< css::uno::Any > arg1;
     233           2 :     css::uno::Any arg1b(sal_True);
     234           1 :     ttb::TestPolyStruct< sal_Bool > arg2;
     235           1 :     ttb::TestPolyStruct< ::sal_Int8 > arg3;
     236           1 :     ttb::TestPolyStruct< ::sal_Int16 > arg4;
     237           1 :     ttb::TestPolyStruct< ::sal_Int32 > arg5;
     238           1 :     ttb::TestPolyStruct< ::sal_Int64 > arg6;
     239           1 :     ttb::TestPolyStruct< ::sal_Unicode > arg7;
     240           2 :     ttb::TestPolyStruct< OUString > arg8;
     241           1 :     ttb::TestPolyStruct< float > arg9;
     242           1 :     ttb::TestPolyStruct< double > arg10;
     243           2 :     ttb::TestPolyStruct<css::uno::Reference<css::uno::XInterface> > arg11;
     244           2 :     ttb::TestPolyStruct<css::uno::Reference< css::lang::XComponent> > arg12;
     245           1 :     ttb::TestPolyStruct<ttb::TestEnum>  arg13;
     246             :     ttb::TestPolyStruct<
     247           2 :           ttb::TestPolyStruct2<sal_Unicode, css::uno::Any> > arg14;
     248             :     ttb::TestPolyStruct< ttb::TestPolyStruct2 <
     249             :         ttb::TestPolyStruct2< sal_Unicode, css::uno::Any >,
     250           2 :         OUString > > arg15;
     251             :     ttb::TestPolyStruct2< OUString,ttb::TestPolyStruct2 <
     252           2 :         ::sal_Unicode, ttb::TestPolyStruct < css::uno::Any > > > arg16;
     253             :     ttb::TestPolyStruct2< ttb::TestPolyStruct2<sal_Unicode, css::uno::Any >,
     254           2 :         ttb::TestPolyStruct<sal_Unicode> > arg17;
     255           2 :     ttb::TestPolyStruct<css::uno::Sequence< css::uno::Type > > arg18;
     256           2 :     ttb::TestPolyStruct<css::uno::Sequence<css::uno::Any> > arg19;
     257           2 :     ttb::TestPolyStruct<css::uno::Sequence< sal_Bool > > arg20;
     258           2 :     ttb::TestPolyStruct<css::uno::Sequence< ::sal_Int8 > > arg21;
     259           2 :     ttb::TestPolyStruct<css::uno::Sequence< ::sal_Int16 > > arg22;
     260           2 :     ttb::TestPolyStruct<css::uno::Sequence< ::sal_Int32 > > arg23;
     261           2 :     ttb::TestPolyStruct<css::uno::Sequence< ::sal_Int64 > > arg24;
     262             : //    ttb::TestPolyStruct<css::uno::Sequence<::sal_Unicode> > arg25;
     263           2 :     ttb::TestPolyStruct<css::uno::Sequence< OUString > > arg26;
     264           2 :     ttb::TestPolyStruct<css::uno::Sequence<float> > arg27;
     265           2 :     ttb::TestPolyStruct<css::uno::Sequence<double> > arg28;
     266           2 :     ttb::TestPolyStruct<css::uno::Sequence<css::uno::Reference<css::uno::XInterface> > > arg29;
     267           2 :     ttb::TestPolyStruct<css::uno::Sequence<css::uno::Reference<css::lang::XComponent> > > arg30;
     268           2 :     ttb::TestPolyStruct<css::uno::Sequence<ttb::TestEnum> >  arg31;
     269             :     ttb::TestPolyStruct<css::uno::Sequence<ttb::TestPolyStruct2<
     270           2 :         ::sal_Unicode, css::uno::Sequence<css::uno::Any> > > > arg32;
     271           1 :     bool arg32a = false;
     272             :     ttb::TestPolyStruct<css::uno::Sequence<ttb::TestPolyStruct2<
     273           2 :         ttb::TestPolyStruct< ::sal_Unicode>, css::uno::Sequence<css::uno::Any> > > > arg33;
     274           2 :     ttb::TestPolyStruct<css::uno::Sequence<css::uno::Sequence< ::sal_Int32> > > arg34;
     275           2 :     css::uno::Sequence<ttb::TestPolyStruct< ::sal_Int32> > arg35;
     276           2 :     css::uno::Sequence<ttb::TestPolyStruct<ttb::TestPolyStruct2< ::sal_Unicode, css::uno::Any> > > arg36;
     277             :     css::uno::Sequence<ttb::TestPolyStruct<ttb::TestPolyStruct2<
     278           2 :         ttb::TestPolyStruct2< ::sal_Unicode,css::uno::Any >, OUString> > > arg37;
     279             :     css::uno::Sequence<ttb::TestPolyStruct2< OUString, ttb::TestPolyStruct2<
     280           2 :         ::sal_Unicode, ttb::TestPolyStruct<css::uno::Any> > > > arg38;
     281             :     css::uno::Sequence<ttb::TestPolyStruct2<ttb::TestPolyStruct2<
     282           2 :         ::sal_Unicode, css::uno::Any>, ttb::TestPolyStruct< ::sal_Unicode> > > arg39;
     283           2 :     css::uno::Sequence<css::uno::Sequence<ttb::TestPolyStruct< ::sal_Unicode> > > arg40;
     284           2 :     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           2 :         ttb::TestPolyStruct2<ttb::TestPolyStruct2<sal_Unicode, css::uno::Any>, OUString> > > > arg42;
     287             :     css::uno::Sequence<css::uno::Sequence<ttb::TestPolyStruct2<
     288           2 :         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           2 :         ::sal_Unicode> > > > arg44;
     292             : 
     293           2 :     if (!(arguments.getLength() == 45
     294           1 :           && (arguments[0] >>= arg0) && arg0.member == cppu::UnoType<sal_Int32>::get()
     295           1 :           && (arguments[1] >>= arg1) && arg1.member == arg1b
     296           1 :           && (arguments[2] >>= arg2) && arg2.member
     297           1 :           && (arguments[3] >>= arg3) && arg3.member == SAL_MIN_INT8
     298           1 :           && (arguments[4] >>= arg4) && arg4.member == SAL_MIN_INT16
     299           1 :           && (arguments[5] >>= arg5) && arg5.member == SAL_MIN_INT32
     300           1 :           && (arguments[6] >>= arg6) && arg6.member == SAL_MIN_INT64
     301           1 :           && (arguments[7] >>= arg7) && arg7.member == 'X'
     302           1 :           && (arguments[8] >>= arg8) && arg8.member == "test"
     303           1 :           && (arguments[9] >>= arg9) && arg9.member == 0.123f
     304           1 :           && (arguments[10] >>= arg10) && arg10.member == 0.456
     305           1 :           && (arguments[11] >>= arg11)
     306           1 :           && (arguments[12] >>= arg12)
     307           1 :           && (arguments[13] >>= arg13) && arg13.member == ttb::TestEnum_TWO
     308           1 :           && (arguments[14] >>= arg14) && arg14.member.member1 == 'X' && arg14.member.member2 == arg1b
     309           1 :           && (arguments[15] >>= arg15) && arg15.member.member1.member1 == 'X'
     310           1 :           && arg15.member.member1.member2 == arg1b
     311           1 :           && arg15.member.member2 == "test"
     312           1 :           && (arguments[16] >>= arg16) && arg16.member1 == "test"
     313           1 :           && arg16.member2.member1 == 'X'
     314           1 :           && arg16.member2.member2.member == arg1b
     315           1 :           && (arguments[17] >>= arg17) && arg17.member1.member1 == 'X'
     316           1 :           && arg17.member1.member2 == arg1b
     317           1 :           && arg17.member2.member == 'X'
     318           1 :           && (arguments[18] >>= arg18)  && arg18.member.getLength() == 1
     319           1 :           && arg18.member[0] == ::cppu::UnoType<sal_Int32>::get()
     320           1 :           && (arguments[19] >>= arg19) && arg19.member.getLength() == 1
     321           1 :           && arg19.member[0] == arg1b
     322           1 :           && (arguments[20] >>= arg20) && arg20.member.getLength() == 1
     323           1 :           && arg20.member[0]
     324           1 :           && (arguments[21] >>= arg21) && arg21.member.getLength() == 1
     325           1 :           && arg21.member[0] == SAL_MIN_INT8
     326           1 :           && (arguments[22] >>= arg22) && arg22.member.getLength() == 1
     327           1 :           && arg22.member[0] == SAL_MIN_INT16
     328           1 :           && (arguments[23] >>= arg23) && arg23.member.getLength() == 1
     329           1 :           && arg23.member[0] == SAL_MIN_INT32
     330           1 :           && (arguments[24] >>= arg24) && arg24.member.getLength() == 1
     331           1 :           && arg24.member[0] == SAL_MIN_INT64
     332           2 :           && (arguments[25].getValueType()
     333           1 :                == ::cppu::UnoType< ttb::TestPolyStruct< ::cppu::UnoSequenceType<
     334           1 :               ::cppu::UnoCharType> > >::get())
     335           1 :           && (static_cast< ttb::TestPolyStruct<css::uno::Sequence<
     336           1 :               ::sal_Unicode> > const *>(arguments[25].getValue())->member[0]) == 'X'
     337           1 :           && (arguments[26] >>= arg26) && arg26.member.getLength() == 1
     338           1 :           && arg26.member[0] == "test"
     339           1 :           && (arguments[27] >>= arg27) && arg27.member.getLength() == 1
     340           1 :           && arg27.member[0] == 0.123f
     341           1 :           && (arguments[28] >>= arg28) && arg28.member.getLength() == 1
     342           1 :           && arg28.member[0] == 0.456
     343           1 :           && (arguments[29] >>= arg29) && arg29.member.getLength() == 1
     344           1 :           && arg29.member[0] != NULL
     345           1 :           && (arguments[30] >>= arg30) && arg30.member.getLength() == 1
     346           1 :           && arg30.member[0] != NULL
     347           1 :           && (arguments[31] >>= arg31) && arg31.member.getLength() == 1
     348           1 :           && arg31.member[0] == ttb::TestEnum_TWO
     349           1 :           && (arguments[32] >>= arg32) && arg32.member.getLength() == 1
     350           1 :           && arg32.member[0].member1 == 'X'
     351           1 :           && arg32.member[0].member2.getLength() == 1
     352           1 :           && (arg32.member[0].member2[0] >>= arg32a) && arg32a
     353           1 :           && (arguments[33] >>= arg33) && arg33.member.getLength() == 1
     354           1 :           && arg33.member[0].member1.member == 'X'
     355           1 :           && arg33.member[0].member2.getLength() == 1
     356           1 :           && arg33.member[0].member2[0] == arg1b
     357           1 :           && (arguments[34] >>= arg34) && arg34.member.getLength() == 1
     358           1 :           && arg34.member[0].getLength() == 1 && arg34.member[0][0] == SAL_MIN_INT32
     359           1 :           && (arguments[35] >>= arg35) && arg35.getLength() == 1
     360           1 :           && arg35[0].member == SAL_MIN_INT32
     361           1 :           && (arguments[36] >>= arg36) && arg36.getLength() == 1
     362           1 :           && arg36[0].member.member1 == 'X'
     363           1 :           && arg36[0].member.member2 == arg1b
     364           1 :           && (arguments[37] >>= arg37) && arg37.getLength() == 1
     365           1 :           && arg37[0].member.member1.member1 == 'X'
     366           1 :           && arg37[0].member.member1.member2 == arg1b
     367           1 :           && arg37[0].member.member2 == "test"
     368           1 :           && (arguments[38] >>= arg38) && arg38.getLength() == 1
     369           1 :           && arg38[0].member1 == "test"
     370           1 :           && arg38[0].member2.member1 == 'X'
     371           1 :           && arg38[0].member2.member2.member == arg1b
     372           1 :           && (arguments[39] >>= arg39) && arg39.getLength() == 1
     373           1 :           && arg39[0].member1.member1 == 'X'
     374           1 :           && arg39[0].member1.member2 == arg1b
     375           1 :           && arg39[0].member2.member == 'X'
     376           1 :           && (arguments[40] >>= arg40) && arg40.getLength() == 1
     377           1 :           && arg40[0].getLength() == 1
     378           1 :           && arg40[0][0].member == 'X'
     379           1 :           && (arguments[41] >>= arg41) && arg41.getLength() == 1
     380           1 :           && arg41[0].getLength() == 1
     381           1 :           && arg41[0][0].member.member1 == 'X'
     382           1 :           && arg41[0][0].member.member2 == arg1b
     383           1 :           && (arguments[42] >>= arg42) && arg42.getLength() == 1
     384           1 :           && arg42[0].getLength() == 1
     385           1 :           && arg42[0][0].member.member1.member1 == 'X'
     386           1 :           && arg42[0][0].member.member1.member2 == arg1b
     387           1 :           && arg42[0][0].member.member2 == "test"
     388           1 :           && (arguments[43] >>= arg43) && arg43.getLength() == 1
     389           1 :           && arg43[0].getLength() == 1
     390           1 :           && arg43[0][0].member1 == "test"
     391           1 :           && arg43[0][0].member2.member1 == 'X'
     392           1 :           && arg43[0][0].member2.member2.member == arg1b
     393           1 :           && (arguments[44] >>= arg44) && arg44.getLength() == 1
     394           1 :           && arg44[0].getLength() == 1
     395           1 :           && arg44[0][0].member1.member1 == 'X'
     396           1 :           && arg44[0][0].member1.member2 == arg1b
     397           1 :           && arg44[0][0].member2.member == 'X'
     398           2 :             ))
     399             :     {
     400           0 :         throw ::test::testtools::bridgetest::BadConstructorArguments();
     401             :     }
     402             : 
     403             :     //check if interfaces work
     404           1 :     arg11.member->acquire();
     405           1 :     arg11.member->release();
     406           1 :     arg12.member->acquire();
     407           1 :     arg12.member->release();
     408           1 :     arg29.member[0]->acquire();
     409           2 :     arg29.member[0]->release();
     410             : 
     411           1 : }
     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 "12" + arg;
     435             : }
     436             : 
     437           2 : css::uno::Reference< css::uno::XInterface > SAL_CALL create(
     438             :     SAL_UNUSED_PARAMETER css::uno::Reference< css::uno::XComponentContext >
     439             :         const &)
     440             : {
     441           2 :     return static_cast< ::cppu::OWeakObject * >(new Impl);
     442             : }
     443             : 
     444           2 : OUString SAL_CALL getImplementationName() {
     445             :     return OUString(
     446           2 :             "comp.test.testtools.bridgetest.Constructors");
     447             : }
     448             : 
     449           1 : css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() {
     450           1 :     css::uno::Sequence< OUString > s(1);
     451           1 :     s[0] = "test.testtools.bridgetest.Constructors";
     452           1 :     return s;
     453             : }
     454             : 
     455           1 : css::uno::Reference< css::uno::XInterface > SAL_CALL create2(
     456             :     SAL_UNUSED_PARAMETER css::uno::Reference< css::uno::XComponentContext >
     457             :         const &)
     458             : {
     459           1 :     return static_cast< ::cppu::OWeakObject * >(new Impl2);
     460             : }
     461             : 
     462           2 : OUString SAL_CALL getImplementationName2() {
     463             :     return OUString(
     464           2 :             "comp.test.testtools.bridgetest.Constructors2");
     465             : }
     466             : 
     467           1 : css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames2() {
     468           1 :     css::uno::Sequence< OUString > s(1);
     469           1 :     s[0] = "test.testtools.bridgetest.Constructors2";
     470           1 :     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           2 : 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           2 :         implName, serviceManager, registryKey, entries);
     486             : }
     487             : 
     488             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11