nss: upgrade to release 3.73
[LibreOffice.git] / test / source / document / xactionlockable.cxx
blob47d2774ae626f5f4a88024a73d41b98da26af6df
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
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/document/xactionlockable.hxx>
11 #include <sal/types.h>
13 #include <com/sun/star/document/XActionLockable.hpp>
15 #include <com/sun/star/uno/Reference.hxx>
17 #include <cppunit/TestAssert.h>
19 using namespace css;
21 namespace apitest
23 void XActionLockable::testAddRemoveActionLock()
25 uno::Reference<document::XActionLockable> xAL(init(), uno::UNO_QUERY_THROW);
27 xAL->addActionLock();
28 CPPUNIT_ASSERT(xAL->isActionLocked());
30 xAL->removeActionLock();
31 CPPUNIT_ASSERT(!xAL->isActionLocked());
34 void XActionLockable::testSetResetActionLock()
36 uno::Reference<document::XActionLockable> xAL(init(), uno::UNO_QUERY_THROW);
38 CPPUNIT_ASSERT_NO_THROW(xAL->setActionLocks(0));
40 const sal_Int16 nLocks = xAL->resetActionLocks();
41 CPPUNIT_ASSERT_EQUAL(sal_Int16(0), nLocks);
42 CPPUNIT_ASSERT(!xAL->isActionLocked());
44 } // namespace apitest
46 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */