update dev300-m58
[ooovba.git] / qadevOOo / tests / basic / ifc / linguistic2 / XThesaurus / linguistic2_XThesaurus.xba
blob2b3beee92a5379e753ef2af0b28449d58a6f4883
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_XThesaurus" 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_XThesaurus.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.XThesaurus
47 '*************************************************************************
48 On Error Goto ErrHndl
49 Dim bOK As Boolean
51 Dim cMeanings As Variant
52 Dim vProp As new com.sun.star.beans.PropertyValue
53 Dim vPops(0) As Variant
54 Dim vLocale As new com.sun.star.lang.Locale
56 vProps(0) = vProp
57 vLocale.Language = "en"
58 vLocale.Country = "US"
59 vLocale.Variant = ""
61 Test.StartMethod("queryMeanings()")
62 bOK = true
63 XMeanings = oObj.queryMeanings("joke", vLocale, vProps())
64 bOK = bOK AND hasUnoInterfaces(XMeanings(0), "com.sun.star.linguistic2.XMeaning")
65 Test.MethodTested("queryMeanings()", bOK)
67 Exit Sub
68 ErrHndl:
69 Test.Exception()
70 bOK = false
71 resume next
72 End Sub
73 </script:module>