'************************************************************************* ' ' Licensed to the Apache Software Foundation (ASF) under one ' or more contributor license agreements. See the NOTICE file ' distributed with this work for additional information ' regarding copyright ownership. The ASF licenses this file ' to you under the Apache License, Version 2.0 (the ' "License"); you may not use this file except in compliance ' with the License. You may obtain a copy of the License at ' ' http://www.apache.org/licenses/LICENSE-2.0 ' ' Unless required by applicable law or agreed to in writing, ' software distributed under the License is distributed on an ' "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ' KIND, either express or implied. See the License for the ' specific language governing permissions and limitations ' under the License. ' '************************************************************************* '************************************************************************* ' This Interface/Service test depends on the following GLOBAL variables, ' which must be specified in the object creation: ' - Global cStringToSearch As String ' should appears more than once ' - Global nSearchedEntriesAmount As Integer '************************************************************************* Sub RunTest() '************************************************************************* ' INTERFACE: ' com.sun.star.util.XReplaceable '************************************************************************* On Error Goto ErrHndl Dim bOK As Boolean Dim oReplaceDescriptor As Object Dim nReplace As Integer Test.StartMethod("createReplaceDescriptor()") bOK = true oReplaceDescriptor = oObj.createReplaceDescriptor() bOK = bOK AND hasUnoInterfaces(oReplaceDescriptor, "com.sun.star.util.XReplaceDescriptor") Test.MethodTested("createReplaceDescriptor()", bOK) Test.StartMethod("replaceAll()") bOK = true Out.Log("Prepearing descriptor...") oReplaceDescriptor.SearchAll = true oReplaceDescriptor.SearchCaseSensitive = true oReplaceDescriptor.SearchWords = false oReplaceDescriptor.SearchString = cStringToSearch oReplaceDescriptor.ReplaceString = ucase(cStringToSearch) nReplace = oObj.replaceAll(oReplaceDescriptor) Out.Log("" & nReplace & " replaces were performed. Expected: " & nSearchedEntriesAmount) bOK = bOK AND nSearchedEntriesAmount = nReplace Out.Log("Return to previous state...") oReplaceDescriptor.SearchString = ucase(cStringToSearch) oReplaceDescriptor.ReplaceString = cStringToSearch nReplace = oObj.replaceAll(oReplaceDescriptor) Test.MethodTested("replaceAll()", bOK) Exit Sub ErrHndl: Test.Exception() bOK = false resume next End Sub