Branch libreoffice-5-0-4
[LibreOffice.git] / qadevOOo / tests / java / ifc / text / _FootnoteSettings.java
blob77cc50d872740a89115d5c3a74c13309d2fd3612
1 /*
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 package ifc.text;
21 import lib.MultiPropertyTest;
23 /**
24 * Testing <code>com.sun.star.text.FootnoteSettings</code>
25 * service properties :
26 * <ul>
27 * <li><code> CharStyleName</code></li>
28 * <li><code> NumberingType</code></li>
29 * <li><code> PageStyleName</code></li>
30 * <li><code> ParaStyleName</code></li>
31 * <li><code> Prefix</code></li>
32 * <li><code> StartAt</code></li>
33 * <li><code> Suffix</code></li>
34 * <li><code> BeginNotice</code></li>
35 * <li><code> EndNotice</code></li>
36 * <li><code> FootnoteCounting</code></li>
37 * <li><code> PositionEndOfDoc</code></li>
38 * </ul> <p>
39 * Properties testing is automated by <code>lib.MultiPropertyTest</code>.
40 * @see com.sun.star.text.FootnoteSettings
42 public class _FootnoteSettings extends MultiPropertyTest {
44 /**
45 * This property can be VOID, and in case if it is so new
46 * value must be defined.
48 public void _CharStyleName() {
49 log.println("Testing with custom Property tester") ;
50 testProperty("CharStyleName", "Endnote Symbol", "Endnote anchor") ;
53 /**
54 * This property can be VOID, and in case if it is so new
55 * value must be defined.
57 public void _PageStyleName() {
58 log.println("Testing with custom Property tester") ;
59 testProperty("PageStyleName", "Standard", "Endnote") ;
62 /**
63 * This property can be VOID, and in case if it is so new
64 * value must be defined.
66 public void _ParaStyleName() {
67 log.println("Testing with custom Property tester") ;
68 testProperty("ParaStyleName", "Standard", "Endnote") ;
71 /**
72 * This property can be VOID, and in case if it is so new
73 * value must be defined.
75 public void _NumberingType() {
76 Short val1 = Short.valueOf(com.sun.star.text.FootnoteNumbering.PER_DOCUMENT);
77 Short val2 = Short.valueOf(com.sun.star.text.FootnoteNumbering.PER_PAGE);
78 log.println("Testing with custom Property tester") ;
79 testProperty("NumberingType", val1, val2) ;
82 /**
83 * This property can be VOID, and in case if it is so new
84 * value must be defined.
86 public void _FootnoteCounting() {
87 Short val1 = Short.valueOf( (short) 1 );
88 Short val2 = Short.valueOf( (short) 2 );
89 log.println("Testing with custom Property tester") ;
90 testProperty("FootnoteCounting", val1, val2) ;