merge the formfield patch from ooo-build
[ooovba.git] / qadevOOo / tests / basic / ifc / chart / ChartDataPointProperties / chart_ChartDataPointProperties.xba
blob938368c88edad956872dd6c04cb3a33171f9e60a
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="chart_ChartDataPointProperties" 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: chart_ChartDataPointProperties.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 '*************************************************************************
40 ' Be sure that all variables are dimensioned:
41 option explicit
45 Sub RunTest()
47 '*************************************************************************
48 ' SERVICE:
49 ' com.sun.star.chart.ChartDataPointProperties
50 '*************************************************************************
51 On Error Goto ErrHndl
52 Dim aCaptions(4) As Integer
53 aCaptions(0) = com.sun.star.chart.ChartDataCaption.NONE
54 aCaptions(1) = com.sun.star.chart.ChartDataCaption.VALUE
55 aCaptions(2) = com.sun.star.chart.ChartDataCaption.PERCENT
56 aCaptions(3) = com.sun.star.chart.ChartDataCaption.TEXT
57 aCaptions(4) = com.sun.star.chart.ChartDataCaption.SYMBOL
58 PropertyTester.TestProperty("DataCaption", aCaptions())
60 PropertyTester.TestProperty("SymbolType")
62 Test.StartMethod("SymbolBitmapURL")
63 Dim sURL1 As String
64 Dim sURL2 As String
65 oObj.setPropertyValue("SymbolBitmapURL", utils.Path2URL(cTestDocsDir) &amp; "crazy-blue.jpg")
66 sURL1 = oObj.getPropertyValue("SymbolBitmapURL")
67 oObj.setPropertyValue("SymbolBitmapURL", utils.Path2URL(cTestDocsDir) &amp; "space-metal.jpg")
68 sURL2 = oObj.getPropertyValue("SymbolBitmapURL")
69 Test.MethodTested("SymbolBitmapURL", sURL1 &lt;&gt; sURL2)
71 Exit Sub
72 ErrHndl:
73 Test.Exception()
74 resume next
75 End Sub
76 </script:module>