merge the formfield patch from ooo-build
[ooovba.git] / qadevOOo / tests / basic / ifc / linguistic2 / XSupportedLocales / linguistic2_XSupportedLocales.xba
blobb46f32961b3dadf6a4843a38a93b9d3d3edadaf5
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="linguistic2_XSupportedLocales" 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: linguistic2_XSupportedLocales.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 '*************************************************************************
42 Sub RunTest()
44 '*************************************************************************
45 ' INTERFACE:
46 ' com.sun.star.linguistic2.XSupportedLocales
47 '*************************************************************************
48 On Error Goto ErrHndl
49 Dim bOK As Boolean
51 Dim vLocales As Variant
53 Test.StartMethod("getLocales()")
54 bOK = true
55 vLocales = oObj.getLocales()
56 bOK = bOK AND (uBound(vLocales()) &gt; 0)
57 Test.MethodTested("getLocales()", bOK)
59 Test.StartMethod("hasLocale()")
60 bOK = true
61 Out.Log("first check all available locales")
62 for i=0 to uBound(vLocales())
63 bOK = bOK AND oObj.hasLocale(vLocales(i))
64 next i
65 Out.Log("all available locales result: " + bOK)
67 Out.Log(" now create a invalid locale")
68 Dim vLocale As new com.sun.star.lang.Locale
69 vLocale.Language = "myLanguage"
70 vLocale.Country = "myCountry"
71 vLocale.Variant = "dummy"
72 bOK = bOK AND Not oObj.hasLocale(vLocale)
74 Test.MethodTested("hasLocale()", bOK)
76 Exit Sub
77 ErrHndl:
78 Test.Exception()
79 bOK = false
80 resume next
81 End Sub
82 </script:module>