merge the formfield patch from ooo-build
[ooovba.git] / qadevOOo / tests / basic / mod / i18n / IndexEntrySupplier / i18n_IndexEntrySupplier.xba
blob795550b21cacf5dd440e4b9c2bc6dfbbcbf53e99
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="i18n_IndexEntrySupplier" 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: i18n_IndexEntrySupplier.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 '*************************************************************************
41 ' REQUIRED VARIABLES for interface/service tests:
43 ' Required for com.sun.star.i18n.XIndexEntrySupplier:
44 Global oLocale As Object
47 Sub CreateObj()
49 '*************************************************************************
50 ' COMPONENT:
51 ' i18n.IndexEntrySupplier
52 '*************************************************************************
53 On Error Goto ErrHndl
55 Dim bOK As Boolean
56 Dim oLocaleData As Object
57 Dim allLocales As Variant
59 bOK = true
61 oObj = createUnoService("com.sun.star.i18n.IndexEntrySupplier")
63 oLocaleData = createUnoService("com.sun.star.i18n.LocaleData")
64 allLocales = oLocaleData.getAllInstalledLocaleNames()
65 Out.Log("Found " &amp; ubound(allLocales) &amp; " Loacales registered in the system")
66 Randomize
67 oLocale = allLocales(rnd * ubound(allLocales))
68 Out.Log("Choose for testing : " &amp; oLocale.Country)
71 Exit Sub
72 ErrHndl:
73 Test.Exception()
74 End Sub
75 </script:module>