nss: upgrade to release 3.73
[LibreOffice.git] / test / source / sheet / xuniquecellformatrangessupplier.cxx
blob18d81eb2f8eed0dca35d686c22a5f0b5d22b0b57
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/sheet/xuniquecellformatrangessupplier.hxx>
12 #include <com/sun/star/container/XIndexAccess.hpp>
13 #include <com/sun/star/sheet/XUniqueCellFormatRangesSupplier.hpp>
15 #include <cppunit/TestAssert.h>
17 using namespace com::sun::star;
18 using namespace com::sun::star::uno;
20 namespace apitest {
22 void XUniqueCellFormatRangesSupplier::testGetUniqueCellFormatRanges()
24 uno::Reference< sheet::XUniqueCellFormatRangesSupplier > xSupplier(init(), UNO_QUERY_THROW);
25 uno::Reference< container::XIndexAccess > xIndexAccess = xSupplier->getUniqueCellFormatRanges();
27 auto count = xIndexAccess->getCount();
28 CPPUNIT_ASSERT_MESSAGE("No elements found", count);
29 for (auto i = 0; i<count; i++) {
30 CPPUNIT_ASSERT_NO_THROW_MESSAGE(OUStringToOString("Unable to access element " + OUString::number(i), RTL_TEXTENCODING_UTF8).getStr(),
31 xIndexAccess->getByIndex(i));
37 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */