LibreOffice Module test (master) 1
xcelladdressable.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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 */
9
12
13#include <com/sun/star/sheet/XCellAddressable.hpp>
14#include <com/sun/star/table/CellAddress.hpp>
15
16#include <cppunit/TestAssert.h>
17
18using namespace com::sun::star;
19using namespace com::sun::star::uno;
20
21namespace apitest
22{
24{
25 uno::Reference<sheet::XCellAddressable> xCellAddressable(init(), UNO_QUERY_THROW);
26 table::CellAddress xCellAddress = xCellAddressable->getCellAddress();
27 table::CellAddress defaultCellAddress(0, 2, 3);
28
29 CPPUNIT_ASSERT_EQUAL_MESSAGE("getCellAddress() didn't returned default cell address",
30 defaultCellAddress, xCellAddress);
31}
32}
33
34/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual css::uno::Reference< css::uno::XInterface > init()=0