jl165 merging heads
[LibreOffice.git] / testautomation / framework / required / f_wizards.bas
blobf7bc38e1623bdd87b489d75119f414ecda6160c9
1 'encoding UTF-8 Do not remove or change this line!
2 '*******************************************************************************
3 ' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 '
5 ' Copyright 2000, 2010 Oracle and/or its affiliates.
7 ' OpenOffice.org - a multi-platform office productivity suite
9 ' This file is part of OpenOffice.org.
11 ' OpenOffice.org is free software: you can redistribute it and/or modify
12 ' it under the terms of the GNU Lesser General Public License version 3
13 ' only, as published by the Free Software Foundation.
15 ' OpenOffice.org is distributed in the hope that it will be useful,
16 ' but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ' GNU Lesser General Public License version 3 for more details
19 ' (a copy is included in the LICENSE file that accompanied this code).
21 ' You should have received a copy of the GNU Lesser General Public License
22 ' version 3 along with OpenOffice.org. If not, see
23 ' <http://www.openoffice.org/license.html>
24 ' for a copy of the LGPLv3 License.
26 '/******************************************************************************
28 '* owner : gregor.hartmann@oracle.com
30 '* short description : Category 0 tests for all included wizards
32 '\******************************************************************************
34 sub main
36 use "framework\required\includes\wizard_agenda.inc"
37 use "framework\required\includes\wizard_documentconverter.inc"
38 use "framework\required\includes\wizard_euroconverter.inc"
39 use "framework\required\includes\wizard_fax.inc"
40 use "framework\required\includes\wizard_firsttime.inc"
41 use "framework\required\includes\wizard_letter.inc"
42 use "framework\required\includes\wizard_mailmerge.inc"
43 use "framework\required\includes\wizard_presentation.inc"
44 use "framework\required\includes\wizard_webpage.inc"
46 hDeleteUserTemplates()
48 call hStatusIn( "framework" , "f_wizards.bas" )
49 call tUpdtWizardFirsttime()
50 call tUpdtWizardLetter()
51 call tUpdtWizardPresentation()
52 call tUpdtWizardMailmerge()
53 call tUpdtWizardAgenda()
54 call tUpdtWizardDocumentConverter()
55 call tUpdtWizardEuroConverter()
56 call tUpdtWizardFax()
57 call tUpdtWizardWebpage()
58 call hStatusOut()
60 if ( hDeleteUserTemplates() > 0 ) then printlog( "User templates left over" )
62 end sub
64 '*******************************************************************************
66 sub LoadIncludeFiles
68 use "global\system\includes\master.inc"
69 use "global\system\includes\gvariabl.inc"
71 use "global\tools\includes\optional\t_filetools.inc"
72 use "global\tools\includes\optional\t_docfuncs.inc"
73 use "global\tools\includes\optional\t_key_tools.inc"
74 use "global\tools\includes\optional\t_stringtools.inc"
75 use "global\tools\includes\optional\t_accels.inc"
77 use "framework\tools\includes\wizards.inc"
78 use "framework\tools\includes\template_tools.inc"
80 gApplication = "WRITER"
81 call GetUseFiles()
83 end sub