Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / test / source / text / xtextcontent.cxx
blob762584e887d1636eefa4eb3cf049ac1cc0e189dd
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/TestAssert.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);
32 uno::Reference<text::XTextContent> xContent(getTextContent(), UNO_SET_THROW);
33 uno::Reference<text::XTextRange> xRange(getTextRange(), UNO_SET_THROW);
35 try
37 if (xContent.is())
38 xContent->attach(xRange);
39 else
40 xTextContent->attach(xRange);
42 catch (const lang::IllegalArgumentException&)
44 bool bAttachSupported = isAttachSupported();
45 if (bAttachSupported)
46 CPPUNIT_ASSERT(false);
48 catch (const RuntimeException&)
50 bool bAttachSupported = isAttachSupported();
51 if (bAttachSupported)
52 CPPUNIT_ASSERT(false);
57 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */