1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
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>
17 using namespace css::uno
;
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
);
38 xContent
->attach(xRange
);
40 xTextContent
->attach(xRange
);
42 catch (const lang::IllegalArgumentException
&)
44 bool bAttachSupported
= isAttachSupported();
46 CPPUNIT_ASSERT(false);
48 catch (const RuntimeException
&)
50 bool bAttachSupported
= isAttachSupported();
52 CPPUNIT_ASSERT(false);
57 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */