LCOV - code coverage report
Current view: top level - sal/qa/rtl/oustringbuffer - test_oustringbuffer_tostring.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 14 14 100.0 %
Date: 2012-08-25 Functions: 9 9 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 50 102 49.0 %

           Branch data     Line data    Source code
       1                 :            : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2                 :            : /*************************************************************************
       3                 :            :  *
       4                 :            :  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       5                 :            :  *
       6                 :            :  * Copyright 2000, 2010 Oracle and/or its affiliates.
       7                 :            :  *
       8                 :            :  * OpenOffice.org - a multi-platform office productivity suite
       9                 :            :  *
      10                 :            :  * This file is part of OpenOffice.org.
      11                 :            :  *
      12                 :            :  * OpenOffice.org is free software: you can redistribute it and/or modify
      13                 :            :  * it under the terms of the GNU Lesser General Public License version 3
      14                 :            :  * only, as published by the Free Software Foundation.
      15                 :            :  *
      16                 :            :  * OpenOffice.org is distributed in the hope that it will be useful,
      17                 :            :  * but WITHOUT ANY WARRANTY; without even the implied warranty of
      18                 :            :  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      19                 :            :  * GNU Lesser General Public License version 3 for more details
      20                 :            :  * (a copy is included in the LICENSE file that accompanied this code).
      21                 :            :  *
      22                 :            :  * You should have received a copy of the GNU Lesser General Public License
      23                 :            :  * version 3 along with OpenOffice.org.  If not, see
      24                 :            :  * <http://www.openoffice.org/license.html>
      25                 :            :  * for a copy of the LGPLv3 License.
      26                 :            :  *
      27                 :            :  ************************************************************************/
      28                 :            : 
      29                 :            : #include <sal/types.h>
      30                 :            : #include <cppunit/TestFixture.h>
      31                 :            : #include <cppunit/TestAssert.h>
      32                 :            : #include <cppunit/extensions/HelperMacros.h>
      33                 :            : #include "rtl/ustrbuf.hxx"
      34                 :            : #include "rtl/ustring.hxx"
      35                 :            : 
      36                 :            : namespace test { namespace oustringbuffer {
      37                 :            : 
      38         [ -  + ]:         15 : class ToString: public CppUnit::TestFixture {
      39                 :            : private:
      40                 :            :     void testToString();
      41                 :            : 
      42 [ +  - ][ +  - ]:         10 :     CPPUNIT_TEST_SUITE(ToString);
         [ +  - ][ +  - ]
                 [ #  # ]
      43 [ +  - ][ +  - ]:          5 :     CPPUNIT_TEST(testToString);
         [ +  - ][ +  - ]
         [ +  - ][ +  - ]
                 [ +  - ]
      44 [ +  - ][ +  - ]:         10 :     CPPUNIT_TEST_SUITE_END();
         [ +  - ][ +  - ]
         [ +  - ][ +  - ]
         [ +  - ][ +  - ]
      45                 :            : };
      46                 :            : 
      47                 :            : } }
      48                 :            : 
      49                 :          5 : CPPUNIT_TEST_SUITE_REGISTRATION(test::oustringbuffer::ToString);
      50                 :            : 
      51                 :          5 : void test::oustringbuffer::ToString::testToString() {
      52 [ +  - ][ +  - ]:          5 :     rtl::OUStringBuffer sb(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("test string")));
      53                 :          5 :     rtl::OUString str = sb.toString();
      54 [ +  - ][ +  - ]:          5 :     CPPUNIT_ASSERT( str == "test string" );
         [ +  - ][ +  - ]
         [ +  - ][ +  - ]
         [ +  - ][ +  - ]
      55                 :            :     // returned OUString must be independent from sb
      56         [ +  - ]:          5 :     sb.append( (sal_Unicode)'a' );
      57 [ +  - ][ +  - ]:          5 :     CPPUNIT_ASSERT( str == "test string" );
         [ +  - ][ +  - ]
         [ +  - ][ +  - ]
         [ +  - ][ +  - ]
      58         [ +  - ]:          5 :     sb.setLength(0);
      59 [ +  - ][ +  - ]:          5 :     CPPUNIT_ASSERT( str == "test string" );
         [ +  - ][ +  - ]
         [ +  - ][ +  - ]
         [ +  - ][ +  - ]
      60 [ +  - ][ +  - ]:         20 : }
      61                 :            : 
      62                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10