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/sheet/xcelladdressable.hxx>
11 #include <test/cppunitasserthelper.hxx>
13 #include <com/sun/star/sheet/XCellAddressable.hpp>
14 #include <com/sun/star/table/CellAddress.hpp>
16 #include <cppunit/TestAssert.h>
18 using namespace com::sun::star
;
19 using namespace com::sun::star::uno
;
23 void XCellAddressable::testGetCellAddress()
25 uno::Reference
<sheet::XCellAddressable
> xCellAddressable(init(), UNO_QUERY_THROW
);
26 table::CellAddress xCellAddress
= xCellAddressable
->getCellAddress();
27 table::CellAddress
defaultCellAddress(0, 2, 3);
29 CPPUNIT_ASSERT_EQUAL_MESSAGE("getCellAddress() didn't returned default cell address",
30 defaultCellAddress
, xCellAddress
);
34 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */