2023-07-09 02:23:46 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <test/unoapi_test.hxx>
|
|
|
|
#include <test/container/xnameaccess.hxx>
|
|
|
|
#include <test/container/xindexaccess.hxx>
|
|
|
|
#include <test/container/xelementaccess.hxx>
|
2023-08-11 08:43:08 -05:00
|
|
|
#include <test/text/xautotextcontainer.hxx>
|
2023-07-09 02:23:46 -05:00
|
|
|
|
|
|
|
#include <com/sun/star/frame/Desktop.hpp>
|
|
|
|
|
|
|
|
#include <com/sun/star/text/XAutoTextContainer.hpp>
|
|
|
|
#include <com/sun/star/text/AutoTextContainer.hpp>
|
|
|
|
|
|
|
|
#include <comphelper/processfactory.hxx>
|
|
|
|
|
|
|
|
using namespace css;
|
|
|
|
using namespace css::uno;
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Initial tests for SwXAutoTextContainer.
|
|
|
|
*/
|
|
|
|
class SwXAutoTextContainer final : public UnoApiTest,
|
|
|
|
public apitest::XElementAccess,
|
|
|
|
public apitest::XIndexAccess,
|
2023-08-28 06:21:04 -05:00
|
|
|
public apitest::XNameAccess
|
2023-07-09 02:23:46 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
SwXAutoTextContainer()
|
2024-05-21 05:00:20 -05:00
|
|
|
: UnoApiTest(u""_ustr)
|
2023-07-09 02:23:46 -05:00
|
|
|
, XElementAccess(cppu::UnoType<text::XAutoTextGroup>::get())
|
|
|
|
, XIndexAccess(3)
|
2024-05-21 05:00:20 -05:00
|
|
|
, XNameAccess(u"crdbus50"_ustr)
|
2023-07-09 02:23:46 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void setUp() override
|
|
|
|
{
|
|
|
|
UnoApiTest::setUp();
|
|
|
|
mxDesktop.set(frame::Desktop::create(mxComponentContext));
|
|
|
|
}
|
|
|
|
|
|
|
|
Reference<XInterface> init() override
|
|
|
|
{
|
|
|
|
Reference<text::XAutoTextContainer> xAutoTextContainer
|
|
|
|
= text::AutoTextContainer::create(comphelper::getProcessComponentContext());
|
|
|
|
|
2023-08-11 08:43:08 -05:00
|
|
|
Reference<container::XNameAccess> xNA(xAutoTextContainer, UNO_QUERY_THROW);
|
|
|
|
Sequence<rtl::OUString> aNames = xNA->getElementNames();
|
|
|
|
std::cout << aNames[0] << std::endl;
|
|
|
|
|
2023-07-09 02:23:46 -05:00
|
|
|
return Reference<XInterface>(xAutoTextContainer, UNO_QUERY_THROW);
|
|
|
|
}
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE(SwXAutoTextContainer);
|
|
|
|
CPPUNIT_TEST(testGetByName);
|
|
|
|
CPPUNIT_TEST(testGetElementNames);
|
|
|
|
CPPUNIT_TEST(testHasByName);
|
|
|
|
CPPUNIT_TEST(testGetCount);
|
|
|
|
CPPUNIT_TEST(testGetByIndex);
|
|
|
|
CPPUNIT_TEST(testGetElementType);
|
|
|
|
CPPUNIT_TEST(testHasElements);
|
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
};
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(SwXAutoTextContainer);
|
|
|
|
}
|
|
|
|
|
2023-08-11 08:43:08 -05:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|