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="drawing_XShapeBinder" script:language="StarBasic"> 4 5 6'************************************************************************* 7' 8' Licensed to the Apache Software Foundation (ASF) under one 9' or more contributor license agreements. See the NOTICE file 10' distributed with this work for additional information 11' regarding copyright ownership. The ASF licenses this file 12' to you under the Apache License, Version 2.0 (the 13' "License"); you may not use this file except in compliance 14' with the License. You may obtain a copy of the License at 15' 16' http://www.apache.org/licenses/LICENSE-2.0 17' 18' Unless required by applicable law or agreed to in writing, 19' software distributed under the License is distributed on an 20' "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 21' KIND, either express or implied. See the License for the 22' specific language governing permissions and limitations 23' under the License. 24' 25'************************************************************************* 26 27 28 29 30 31'************************************************************************* 32' This Interface/Service test depends on the following GLOBAL variables, 33' which must be specified in the object creation: 34 35' - Global oBinderCollection As Object 36 37'************************************************************************* 38 39 40 41 42Sub RunTest() 43 44'************************************************************************* 45' INTERFACE: 46' com.sun.star.drawing.XShapeBinder 47'************************************************************************* 48On Error Goto ErrHndl 49 Dim bOK As Boolean 50 51 ReCreateObj() 52 53 Test.StartMethod("bind()") 54 bOK = true 55 if hasUnoInterfaces(oObj, "com.sun.star.container.XIndexAccess") then 56 nCount = oObj.getCount() 57 Out.Log("" & nCount & " elements in collection") 58 oBind = oObj.bind(oBinderCollection) 59 if (isNULL(oBind)) then Out.Log("bind() returned NULL.") 60 Out.Log("" & oObj.getCount & " elements in collection") 61 bOK = bOK AND (NOT isNull(oBind)) AND (nCount <> oObj.getCount) 62 else 63 oBind = oObj.bind(oBinderCollection) 64 if (isNULL(oBind)) then Out.Log("bind() returned NULL.") 65 bOK = bOK AND NOT isNull(oBind) 66 end if 67 Test.MethodTested("bind()", bOK) 68 69 Test.StartMethod("unbind()") 70 if (NOT bOK) then 71 Out.Log("Can't test unbind() without bind()") 72 else 73 if hasUnoInterfaces( oObj, "com.sun.star.container.XIndexAccess" ) then 74 oObj.unbind(oBind) 75 Out.Log("" & oObj.count & " elements in collection") 76 bOK = bOK AND (nCount <= oObj.getCount) 77 Test.MethodTested("unbind()", bOK) 78 else 79 oObj.unbind(oBind) 80 end if 81 end if 82 83Exit Sub 84ErrHndl: 85 Test.Exception() 86 bOK = false 87 resume next 88End Sub 89</script:module> 90