nss: upgrade to release 3.73
[LibreOffice.git] / test / source / sheet / xcelladdressable.cxx
blobe42809170518d2620998c6de168f4b9c7aebdb39
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/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;
21 namespace apitest
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: */