tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / basic / qa / basic_coverage / test_join_method.bas
bloba3769ae188ffa3969fa3082e475fd7a24c49bdcd
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/.
8 Option Explicit
10 Function doUnitTest() As String
11 TestUtil.TestInit
12 verify_Join_method
13 doUnitTest = TestUtil.GetResult()
14 End Function
16 Sub verify_Join_method
17 On Error GoTo errorHandler
19 ' JOIN
20 Dim aStrings(2) as String
21 aStrings(0) = "Hello"
22 aStrings(1) = "world"
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")
30 Exit Sub
31 errorHandler:
32 TestUtil.ReportErrorHandler("verify_Join_method", Err, Error$, Erl)
33 End Sub