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 .
21 import lib
.MultiPropertyTest
;
22 import util
.ValueComparer
;
24 import com
.sun
.star
.table
.XCellRange
;
25 import com
.sun
.star
.uno
.UnoRuntime
;
26 import com
.sun
.star
.uno
.XInterface
;
29 * Testing <code>com.sun.star.table.TableColumn</code>
30 * service properties :
32 * <li><code> Width</code></li>
33 * <li><code> OptimalWidth</code></li>
34 * <li><code> IsVisible</code></li>
35 * <li><code> IsStartOfNewPage</code></li>
37 * Properties testing is automated by <code>lib.MultiPropertyTest</code>.
38 * @see com.sun.star.table.TableColumn
40 public class _TableColumn
extends MultiPropertyTest
{
42 public void _OptimalWidth() {
45 XInterface tObject
= tEnv
.getTestObject();
46 XCellRange aRange
= UnoRuntime
.queryInterface(XCellRange
.class, tObject
);
47 aRange
.getCellByPosition(0,0).setFormula("Thats a pretty long text");
48 Object width_before
= oObj
.getPropertyValue("Width");
49 log
.println("Before setting to optimal width: "+width_before
);
50 oObj
.setPropertyValue("OptimalWidth", Boolean
.TRUE
);
51 Object width_after
= oObj
.getPropertyValue("Width");
52 log
.println("After setting to optimal width: "+width_after
);
53 res
= ! ValueComparer
.equalValue(width_before
,width_after
);
54 } catch (Exception e
) {
56 e
.printStackTrace(log
);
59 tRes
.tested("OptimalWidth",res
);
62 } //finish class _TableColumn