summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/basic/ifc/util/PathSettings/util_PathSettings.xba
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/basic/ifc/util/PathSettings/util_PathSettings.xba')
-rw-r--r--qadevOOo/tests/basic/ifc/util/PathSettings/util_PathSettings.xba151
1 files changed, 151 insertions, 0 deletions
diff --git a/qadevOOo/tests/basic/ifc/util/PathSettings/util_PathSettings.xba b/qadevOOo/tests/basic/ifc/util/PathSettings/util_PathSettings.xba
new file mode 100644
index 000000000000..bd2c5cfe2a45
--- /dev/null
+++ b/qadevOOo/tests/basic/ifc/util/PathSettings/util_PathSettings.xba
@@ -0,0 +1,151 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
+<script:module xmlns:script="http://openoffice.org/2000/script" script:name="util_PathSettings" script:language="StarBasic">
+
+
+'*************************************************************************
+'
+' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+'
+' Copyright 2000, 2010 Oracle and/or its affiliates.
+'
+' OpenOffice.org - a multi-platform office productivity suite
+'
+' This file is part of OpenOffice.org.
+'
+' OpenOffice.org is free software: you can redistribute it and/or modify
+' it under the terms of the GNU Lesser General Public License version 3
+' only, as published by the Free Software Foundation.
+'
+' OpenOffice.org is distributed in the hope that it will be useful,
+' but WITHOUT ANY WARRANTY; without even the implied warranty of
+' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+' GNU Lesser General Public License version 3 for more details
+' (a copy is included in the LICENSE file that accompanied this code).
+'
+' You should have received a copy of the GNU Lesser General Public License
+' version 3 along with OpenOffice.org. If not, see
+' <http://www.openoffice.org/license.html>
+' for a copy of the LGPLv3 License.
+'
+'*************************************************************************
+'*************************************************************************
+
+
+
+' Be sure that all variables are dimensioned:
+option explicit
+
+
+
+Sub RunTest()
+
+'*************************************************************************
+' SERVICE:
+' com.sun.star.util.PathSettings
+'*************************************************************************
+On Error Goto ErrHndl
+
+ Dim values(1) As String
+ values(1) = oObj.Addin
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("Addin", values())
+
+ values(1) = oObj.AutoCorrect
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("AutoCorrect", values())
+
+ values(1) = oObj.AutoText
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("AutoText", values())
+
+ values(1) = oObj.Backup
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("Backup", values())
+
+ values(1) = oObj.Basic
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("Basic", values())
+
+ values(1) = oObj.Bitmap
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("Bitmap", values())
+
+ values(1) = oObj.Config
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("Config", values())
+
+ values(1) = oObj.Dictionary
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("Dictionary", values())
+
+ values(1) = oObj.Favorite
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("Favorite", values())
+
+ values(1) = oObj.Filter
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("Filter", values())
+
+ values(1) = oObj.Gallery
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("Gallery", values())
+
+ values(1) = oObj.Graphic
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("Graphic", values())
+
+ values(1) = oObj.Help
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("Help", values())
+
+ values(1) = oObj.Linguistic
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("Linguistic", values())
+
+ values(1) = oObj.Module
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("Module", values())
+
+ values(1) = oObj.Palette
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("Palette", values())
+
+ values(1) = oObj.Plugin
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("Plugin", values())
+
+ values(1) = oObj.Storage
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("Storage", values())
+
+ values(1) = oObj.Temp
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("Temp", values())
+
+ values(1) = oObj.Template
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("Template", values())
+
+ values(1) = oObj.UIConfig
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("UIConfig", values())
+
+ values(1) = oObj.UserConfig
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("UserConfig", values())
+
+ values(1) = oObj.UserDictionary
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("UserDictionary", values())
+
+ values(1) = oObj.Work
+ values(0) = values(1) + "New"
+ PropertyTester.TestProperty("Work", values())
+
+Exit Sub
+ErrHndl:
+ Test.Exception()
+ resume next
+End Sub
+</script:module>