bump product version to 5.0.4.1
[LibreOffice.git] / test / source / text / xtextcontent.cxx
blob6f6b00ff87c177685eeada973adf87ca379ac381
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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 */
10 #include "test/text/xtextcontent.hxx"
11 #include <com/sun/star/text/XTextContent.hpp>
12 #include <com/sun/star/text/XTextRange.hpp>
13 #include <com/sun/star/lang/IllegalArgumentException.hpp>
14 #include "cppunit/extensions/HelperMacros.h"
16 using namespace css;
17 using namespace css::uno;
19 namespace apitest {
21 void XTextContent::testGetAnchor()
23 uno::Reference< text::XTextContent > xTextContent(init(), UNO_QUERY_THROW);
24 uno::Reference< uno::XInterface > xAnchor(xTextContent->getAnchor());
25 CPPUNIT_ASSERT(xAnchor.is());
28 void XTextContent::testAttach()
30 uno::Reference< text::XTextContent > xTextContent(init(), UNO_QUERY_THROW);
31 uno::Reference< text::XTextRange > xAnchor = xTextContent->getAnchor();
33 uno::Reference< text::XTextContent > xContent(getTextContent(), UNO_QUERY_THROW);
34 uno::Reference< text::XTextRange > xRange(getTextRange(), UNO_QUERY_THROW);
36 try
38 if (xContent.is())
39 xContent->attach(xRange);
40 else
41 xTextContent->attach(xRange);
43 catch (const lang::IllegalArgumentException&)
45 bool bAttachSupported = isAttachSupported();
46 if (bAttachSupported)
47 CPPUNIT_ASSERT(false);
49 catch (const RuntimeException&)
51 bool bAttachSupported = isAttachSupported();
52 if (bAttachSupported)
53 CPPUNIT_ASSERT(false);
59 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */