merge the formfield patch from ooo-build
[ooovba.git] / qadevOOo / tests / basic / ifc / document / XActionLockable / document_XActionLockable.xba
blob71f377a6516671af064d9548fbbd391cee59b138
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
3 <script:module xmlns:script="http://openoffice.org/2000/script" script:name="document_XActionLockable" script:language="StarBasic">
6 '*************************************************************************
8 ' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9 '
10 ' Copyright 2008 by Sun Microsystems, Inc.
12 ' OpenOffice.org - a multi-platform office productivity suite
14 ' $RCSfile: document_XActionLockable.xba,v $
16 ' $Revision: 1.3 $
18 ' This file is part of OpenOffice.org.
20 ' OpenOffice.org is free software: you can redistribute it and/or modify
21 ' it under the terms of the GNU Lesser General Public License version 3
22 ' only, as published by the Free Software Foundation.
24 ' OpenOffice.org is distributed in the hope that it will be useful,
25 ' but WITHOUT ANY WARRANTY; without even the implied warranty of
26 ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 ' GNU Lesser General Public License version 3 for more details
28 ' (a copy is included in the LICENSE file that accompanied this code).
30 ' You should have received a copy of the GNU Lesser General Public License
31 ' version 3 along with OpenOffice.org. If not, see
32 ' <http://www.openoffice.org/license.html>
33 ' for a copy of the LGPLv3 License.
35 '*************************************************************************
36 '*************************************************************************
40 ' Be sure that all variables are dimensioned:
41 option explicit
45 Sub RunTest()
47 '*************************************************************************
48 ' INTERFACE:
49 ' com.sun.star.document.XActionLockable
50 '*************************************************************************
51 On Error Goto ErrHndl
52 Dim bOK As Boolean
53 Dim bResetOK As Boolean
55 Test.StartMethod("resetActionLocks()")
56 bOK = true
57 oObj.resetActionLocks()
58 bResetOK = bOK
60 Test.StartMethod("isActionLocked()")
61 Test.StartMethod("addActionLock()")
62 bOK = true
63 bOK = bOK AND NOT oObj.isActionLocked()
64 oObj.addActionLock()
65 bOK = bOK AND oObj.isActionLocked()
66 Test.MethodTested("addActionLock()", bOK)
67 Test.MethodTested("isActionLocked()", bOK)
69 Test.StartMethod("removeActionLock()")
70 bOK = true
71 oObj.removeActionLock()
72 bOK = bOK AND NOT oObj.isActionLocked()
73 Test.MethodTested("removeActionLock()", bOK)
75 Test.StartMethod("setActionLocks()")
76 bOK = true
77 oObj.setActionLocks(5)
78 bOK = bOK AND oObj.resetActionLocks() = 5
79 bResetOK = bResetOK AND bOK
80 Test.MethodTested("setActionLocks()", bOK)
81 Test.MethodTested("resetActionLocks()", bResetOK)
83 Exit Sub
84 ErrHndl:
85 Test.Exception()
86 bOK = false
87 resume next
88 End Sub
89 </script:module>