1 ' This file is part of the LibreOffice project.
3 ' This Source Code Form is subject to the terms of the Mozilla Public
4 ' License, v. 2.0. If a copy of the MPL was not distributed with this
5 ' file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 Function doUnitTest() As String
13 doUnitTest
= TestUtil
.GetResult()
16 Sub verify_Join_method
17 On Error GoTo errorHandler
20 Dim aStrings(2) as String
23 TestUtil
.AssertEqual(Join( aStrings
, " " ), "Hello world ", "Join(aStrings, "" "" is not ""Hello world """)
25 ' tdf#141474 keyword names need to match that of VBA
26 Dim aList(0 to 7) As String : aList
= Array("(", "Star", "|", "Open", "|", "Libre", ")", "Office")
27 TestUtil
.AssertEqual(Join(sourceArray
:=aList
), "( Star | Open | Libre ) Office", "Join() with 1 keyword name")
28 TestUtil
.AssertEqual(Join(delimiter
:="", sourceArray
:=aList
), "(Star|Open|Libre)Office", "Join() with 2 keyword names")
32 TestUtil
.ReportErrorHandler("verify_Join_method", Err
, Error$, Erl
)