2010-10-14 01:30:07 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2000-09-18 09:29:57 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 05:42:35 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
2008-04-11 05:42:35 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
2008-04-11 05:42:35 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
2008-04-11 05:42:35 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
2008-04-11 05:42:35 -05:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
2008-04-11 05:42:35 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
2006-09-16 06:45:43 -05:00
|
|
|
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_cppuhelper.hxx"
|
2000-09-18 09:29:57 -05:00
|
|
|
#include <cppuhelper/proptypehlp.hxx>
|
|
|
|
|
|
|
|
#include <com/sun/star/beans/Property.hpp>
|
2003-04-15 10:36:10 -05:00
|
|
|
|
2000-09-18 09:29:57 -05:00
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::cppu;
|
|
|
|
|
|
|
|
void testPropertyTypeHelper()
|
|
|
|
{
|
|
|
|
Any a;
|
|
|
|
|
|
|
|
a <<= ( sal_Int8 ) 25;
|
|
|
|
|
|
|
|
sal_Int32 i;
|
|
|
|
convertPropertyValue( i , a );
|
2009-07-10 07:03:42 -05:00
|
|
|
OSL_ASSERT( 25 == i );
|
2000-09-18 09:29:57 -05:00
|
|
|
|
|
|
|
sal_Int16 i16;
|
|
|
|
convertPropertyValue( i16 , a );
|
2009-07-10 07:03:42 -05:00
|
|
|
OSL_ASSERT( 25 == i16 );
|
2000-09-18 09:29:57 -05:00
|
|
|
|
|
|
|
sal_Int8 i8;
|
|
|
|
convertPropertyValue( i8 , a );
|
2009-07-10 07:03:42 -05:00
|
|
|
OSL_ASSERT( 25 == i8 );
|
2000-09-18 09:29:57 -05:00
|
|
|
|
|
|
|
sal_uInt32 i32;
|
|
|
|
convertPropertyValue( i32 , a );
|
2009-07-10 07:03:42 -05:00
|
|
|
OSL_ASSERT( 25 == i32 );
|
2000-09-18 09:29:57 -05:00
|
|
|
|
|
|
|
double d;
|
|
|
|
convertPropertyValue( d , a );
|
2009-07-10 07:03:42 -05:00
|
|
|
OSL_ASSERT( 25. == d );
|
2000-09-18 09:29:57 -05:00
|
|
|
|
|
|
|
float f;
|
|
|
|
convertPropertyValue( f , a );
|
2009-07-10 07:03:42 -05:00
|
|
|
OSL_ASSERT( 25. == f );
|
2000-09-18 09:29:57 -05:00
|
|
|
|
|
|
|
::com::sun::star::beans::Property prop;
|
|
|
|
|
|
|
|
prop.Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("Huhu") );
|
|
|
|
prop.Handle = 5;
|
|
|
|
prop.Attributes = 3;
|
|
|
|
|
|
|
|
a <<= prop;
|
|
|
|
|
|
|
|
::com::sun::star::beans::Property prop2;
|
|
|
|
convertPropertyValue( prop2 , a );
|
2009-07-10 07:03:42 -05:00
|
|
|
OSL_ASSERT( prop.Handle == prop2.Handle && prop.Name == prop2.Name && prop.Attributes == prop2.Attributes );
|
2000-09-18 09:29:57 -05:00
|
|
|
|
|
|
|
|
|
|
|
::rtl::OUString ow;
|
|
|
|
a <<= prop.Name;
|
|
|
|
convertPropertyValue( ow , a );
|
2009-07-10 07:03:42 -05:00
|
|
|
OSL_ASSERT( ow == prop.Name );
|
2000-09-18 09:29:57 -05:00
|
|
|
}
|
2010-10-14 01:30:07 -05:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|