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_LineDiagram" script:language="StarBasic"> 4 5 6'************************************************************************* 7' 8' Licensed to the Apache Software Foundation (ASF) under one 9' or more contributor license agreements. See the NOTICE file 10' distributed with this work for additional information 11' regarding copyright ownership. The ASF licenses this file 12' to you under the Apache License, Version 2.0 (the 13' "License"); you may not use this file except in compliance 14' with the License. You may obtain a copy of the License at 15' 16' http://www.apache.org/licenses/LICENSE-2.0 17' 18' Unless required by applicable law or agreed to in writing, 19' software distributed under the License is distributed on an 20' "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 21' KIND, either express or implied. See the License for the 22' specific language governing permissions and limitations 23' under the License. 24' 25'************************************************************************* 26 27 28 29 30 31' Be sure that all variables are dimensioned: 32option explicit 33 34'************************************************************************* 35' This Interface/Service test depends on the following GLOBAL variables, 36' which must be specified in the object creation: 37 38' Global oLineDiagram As Object 39 40'************************************************************************* 41 42 43 44 45 46 47Sub RunTest() 48 49'************************************************************************* 50' SERVICE: 51' com.sun.star.chart.LineDiagram 52'************************************************************************* 53On Error Goto ErrHndl 54 Dim oObject As Object 55 ' Change an object to test here! 56 oObject = oObj 57 oObj = oLineDiagram 58 59 if isEmpty(oObj) then 60 Out.Log("Global oLineDiagram As Object is required for this test!") 61 End If 62 63 Dim nSymbolType(1) As Integer 64 nSymbolType(0) = com.sun.star.chart.ChartSymbolType.NONE 65 nSymbolType(1) = com.sun.star.chart.ChartSymbolType.AUTO 66 PropertyTester.TestProperty("SymbolType", nSymbolType()) 67 68 oObj.SymbolType = com.sun.star.chart.ChartSymbolType.SYMBOL0 69 Dim newSize As new com.sun.star.awt.Size 70 newSize.Width = 300 71 newSize.Height = 300 72 PropertyTester.TestProperty("SymbolSize", Array(newSize)) 73 74 Test.StartMethod("SymbolBitmapURL") 75 Dim sURL1 As String 76 Dim sURL2 As String 77 oObj.setPropertyValue("SymbolBitmapURL", utils.Path2URL(cTestDocsDir) + "crazy-blue.jpg") 78 sURL1 = oObj.getPropertyValue("SymbolBitmapURL") 79 oObj.setPropertyValue("SymbolBitmapURL", utils.Path2URL(cTestDocsDir) + "space-metal.jpg") 80 sURL2 = oObj.getPropertyValue("SymbolBitmapURL") 81 Test.MethodTested("SymbolBitmapURL", sURL1 <> sURL2) 82 83 PropertyTester.TestProperty("Lines") 84 85 Dim nSpline(1) As Long 86 nSpline(0) = 0 87 nSpline(1) = 2 88 PropertyTester.TestProperty("SplineType", nSpline()) 89 90 PropertyTester.TestProperty("SplineOrder") 91 92 PropertyTester.TestProperty("SplineResolution") 93 94 ' Change an object back! 95 oObj = oObject 96 97Exit Sub 98ErrHndl: 99 Test.Exception() 100 resume next 101End Sub 102</script:module> 103