LibreOffice Module test (master) 1
xsheetannotation.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
11
12#include <com/sun/star/table/CellAddress.hpp>
13
14#include <cppunit/TestAssert.h>
15#include <rtl/ustring.hxx>
16
17using namespace css;
18using namespace css::uno;
19
20namespace apitest {
21
23{
24 uno::Reference< sheet::XSheetAnnotation > aSheetAnnotation (init(), UNO_QUERY_THROW);
25 table::CellAddress aResultCellAddress = aSheetAnnotation->getPosition();
26
27 //expected result
28 table::CellAddress aExpectedCellAddress;
29 aExpectedCellAddress.Sheet = 0;
30 aExpectedCellAddress.Row = 1;
31 aExpectedCellAddress.Column = 2;
32
33 CPPUNIT_ASSERT_EQUAL_MESSAGE("Wrong SHEET reference position", aExpectedCellAddress.Sheet, aResultCellAddress.Sheet);
34 CPPUNIT_ASSERT_EQUAL_MESSAGE("Wrong COLUMN reference position", aExpectedCellAddress.Column, aResultCellAddress.Column);
35 CPPUNIT_ASSERT_EQUAL_MESSAGE("Wrong ROW reference position", aExpectedCellAddress.Row, aResultCellAddress.Row);
36}
37
39{
40 uno::Reference< sheet::XSheetAnnotation > aSheetAnnotation (init(), UNO_QUERY_THROW);
41 OUString aAuthor = aSheetAnnotation->getAuthor();
42
43 CPPUNIT_ASSERT_EQUAL_MESSAGE("Wrong author", OUString("LG"), aAuthor);
44}
46{
47 uno::Reference< sheet::XSheetAnnotation > aSheetAnnotation (init(), UNO_QUERY_THROW);
48 OUString aDate = aSheetAnnotation->getDate();
49
50 CPPUNIT_ASSERT_EQUAL_MESSAGE("Wrong date", OUString("01/17/2013"), aDate);
51}
53{
54 uno::Reference< sheet::XSheetAnnotation > aSheetAnnotation (init(), UNO_QUERY_THROW);
55 bool isVisible = aSheetAnnotation->getIsVisible();
56
57 CPPUNIT_ASSERT_MESSAGE("Wrong visible state", isVisible);
58}
60{
61 uno::Reference< sheet::XSheetAnnotation > aSheetAnnotation (init(), UNO_QUERY_THROW);
62 aSheetAnnotation->setIsVisible(false);
63 bool isVisible = aSheetAnnotation->getIsVisible();
64
65 CPPUNIT_ASSERT_MESSAGE("Visible state not changed", !isVisible);
66}
67
68}
69
70/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual css::uno::Reference< css::uno::XInterface > init()=0