2013-02-05 10:25:49 +00:00
|
|
|
'
|
|
|
|
' This file is part of the LibreOffice project.
|
|
|
|
'
|
|
|
|
' This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
' License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
' file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
'
|
|
|
|
|
2021-07-06 16:00:14 +02:00
|
|
|
Option Explicit
|
2013-02-05 10:25:49 +00:00
|
|
|
|
2021-07-01 18:23:08 +02:00
|
|
|
Function doUnitTest as String
|
2021-07-06 16:00:14 +02:00
|
|
|
Dim oNamedValue as new com.sun.star.beans.NamedValue
|
2013-02-05 10:25:49 +00:00
|
|
|
Dim oCellAddress as new com.sun.star.table.CellAddress
|
|
|
|
oNamedValue.Value = oCellAddress ' fdo#60065 - this would throw an error
|
2021-07-01 18:23:08 +02:00
|
|
|
doUnitTest = "OK"
|
2013-02-05 10:25:49 +00:00
|
|
|
End Function
|