LCOV - code coverage report
Current view: top level - writerfilter/qa/cppunittests/rtftok - testrtftok.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 18 18 100.0 %
Date: 2012-08-25 Functions: 12 13 92.3 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 39 82 47.6 %

           Branch data     Line data    Source code
       1                 :            : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2                 :            : /*
       3                 :            :  * Version: MPL 1.1 / GPLv3+ / LGPLv3+
       4                 :            :  *
       5                 :            :  * The contents of this file are subject to the Mozilla Public License Version
       6                 :            :  * 1.1 (the "License"); you may not use this file except in compliance with
       7                 :            :  * the License. You may obtain a copy of the License at
       8                 :            :  * http://www.mozilla.org/MPL/
       9                 :            :  *
      10                 :            :  * Software distributed under the License is distributed on an "AS IS" basis,
      11                 :            :  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
      12                 :            :  * for the specific language governing rights and limitations under the
      13                 :            :  * License.
      14                 :            :  *
      15                 :            :  * The Initial Developer of the Original Code is
      16                 :            :  *       Miklos Vajna <vmiklos@frugalware.org>
      17                 :            :  * Portions created by the Initial Developer are Copyright (C) 2011 the
      18                 :            :  * Initial Developer. All Rights Reserved.
      19                 :            :  *
      20                 :            :  * Contributor(s):
      21                 :            :  *
      22                 :            :  * Alternatively, the contents of this file may be used under the terms of
      23                 :            :  * either the GNU General Public License Version 3 or later (the "GPLv3+"), or
      24                 :            :  * the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
      25                 :            :  * in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
      26                 :            :  * instead of those above.
      27                 :            :  */
      28                 :            : 
      29                 :            : #include <unotest/filters-test.hxx>
      30                 :            : #include <test/bootstrapfixture.hxx>
      31                 :            : #include <com/sun/star/document/XFilter.hpp>
      32                 :            : 
      33                 :            : #include <osl/file.hxx>
      34                 :            : #include <osl/process.h>
      35                 :            : 
      36                 :            : using namespace ::com::sun::star;
      37                 :            : 
      38 [ +  - ][ +  - ]:          9 : class RtfTest
                 [ -  + ]
      39                 :            :     : public test::FiltersTest
      40                 :            :     , public test::BootstrapFixture
      41                 :            : {
      42                 :            : public:
      43                 :            : 
      44                 :            :     virtual void setUp();
      45                 :            : 
      46                 :            :     virtual bool load(const OUString &, const OUString &rURL, const OUString &);
      47                 :            :     void test();
      48                 :            : 
      49 [ +  - ][ +  - ]:          6 :     CPPUNIT_TEST_SUITE(RtfTest);
         [ +  - ][ +  - ]
                 [ #  # ]
      50 [ +  - ][ +  - ]:          3 :     CPPUNIT_TEST(test);
         [ +  - ][ +  - ]
         [ +  - ][ +  - ]
                 [ +  - ]
      51 [ +  - ][ +  - ]:          6 :     CPPUNIT_TEST_SUITE_END();
         [ +  - ][ +  - ]
         [ +  - ][ +  - ]
         [ +  - ][ +  - ]
      52                 :            : private:
      53                 :            :     uno::Reference<document::XFilter> m_xFilter;
      54                 :            : };
      55                 :            : 
      56                 :          3 : void RtfTest::setUp()
      57                 :            : {
      58                 :          3 :     test::BootstrapFixture::setUp();
      59                 :            : 
      60 [ +  - ][ +  - ]:          3 :     m_xFilter = uno::Reference< document::XFilter >(m_xSFactory->createInstance("com.sun.star.comp.Writer.RtfFilter"), uno::UNO_QUERY_THROW);
                 [ +  - ]
      61                 :          3 : }
      62                 :            : 
      63                 :         33 : bool RtfTest::load(const OUString &, const OUString &rURL, const OUString &)
      64                 :            : {
      65         [ +  - ]:         33 :     uno::Sequence< beans::PropertyValue > aDescriptor(1);
      66         [ +  - ]:         33 :     aDescriptor[0].Name = "URL";
      67 [ +  - ][ +  - ]:         33 :     aDescriptor[0].Value <<= rURL;
      68 [ +  - ][ +  - ]:         33 :     return m_xFilter->filter(aDescriptor);
                 [ +  - ]
      69                 :            : }
      70                 :            : 
      71                 :          3 : void RtfTest::test()
      72                 :            : {
      73                 :            :     testDir(OUString(),
      74                 :            :         getURLFromSrc("/writerfilter/qa/cppunittests/rtftok/data/"),
      75 [ +  - ][ +  - ]:          3 :         OUString());
      76                 :          3 : }
      77                 :            : 
      78                 :          3 : CPPUNIT_TEST_SUITE_REGISTRATION(RtfTest);
      79                 :            : 
      80 [ +  - ][ +  - ]:         12 : CPPUNIT_PLUGIN_IMPLEMENT();
         [ +  - ][ +  - ]
         [ +  - ][ #  # ]
      81                 :            : 
      82                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10