Update ooo320-m1
[ooovba.git] / qadevOOo / tests / java / ifc / text / _XTextColumns.java
blobf3ae609d3b2ef2b25fd433698c79cada4d056551
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: _XTextColumns.java,v $
10 * $Revision: 1.4 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 package ifc.text;
33 import lib.MultiMethodTest;
35 import com.sun.star.text.TextColumn;
36 import com.sun.star.text.XTextColumns;
38 /**
39 * Testing <code>com.sun.star.text.XTextColumns</code>
40 * interface methods :
41 * <ul>
42 * <li><code> getReferenceValue()</code></li>
43 * <li><code> getColumnCount()</code></li>
44 * <li><code> setColumnCount()</code></li>
45 * <li><code> getColumns()</code></li>
46 * <li><code> setColumns()</code></li>
47 * </ul> <p>
48 * Test is <b> NOT </b> multithread compilant. <p>
49 * @see com.sun.star.text.XTextColumns
51 public class _XTextColumns extends MultiMethodTest {
53 public XTextColumns oObj = null;
55 /**
56 * Test calls the method. <p>
57 * Has <b> OK </b> status if the method returns
58 * positive value.
60 public void _getColumnCount(){
62 short howmuch = oObj.getColumnCount();
63 tRes.tested("getColumnCount()",howmuch >=0);
66 /**
67 * Test calls the method. <p>
68 * Has <b> OK </b> status if the method returns not
69 * <code>null</code> value.
71 public void _getColumns(){
72 TextColumn[] cols = oObj.getColumns();
73 tRes.tested("getColumns()",cols != null);
76 /**
77 * Test calls the method. <p>
78 * Has <b> OK </b> status if the method returns
79 * positive value.
81 public void _getReferenceValue(){
83 int ref = oObj.getReferenceValue();
84 tRes.tested("getReferenceValue()",ref >0);
87 /**
88 * Sets the column count property to some value
89 * then checks it by <code>getColumnCount</code> method. <p>
91 * Has <b>OK</b> status if set and get values are equal.
93 public void _setColumnCount(){
95 oObj.setColumnCount((short) 3);
96 short howmuch = oObj.getColumnCount();
97 tRes.tested("setColumnCount()",howmuch == 3);
101 * Sets columns to some array
102 * then checks it by <code>getColumns</code> method. <p>
104 * Has <b>OK</b> status if set and get arays are equal.
106 public void _setColumns(){
108 TextColumn newCol = new TextColumn(5,1,1);
109 TextColumn[] cols = {newCol};
110 oObj.setColumns(cols);
111 TextColumn[] gCols = oObj.getColumns();
112 tRes.tested("setColumns()",util.ValueComparer.equalValue(cols, gCols));
115 } // finish class _XTextColumns