Update git submodules
[LibreOffice.git] / basic / qa / basic_coverage / test_mid_keyword_names.bas
blobabe56043ad296155f55bb83409cdd6ecf72e6ed2
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_Mid_method
13 doUnitTest = TestUtil.GetResult()
14 End Function
16 Sub verify_Mid_method
17 On Error GoTo errorHandler
19 ' tdf#141474 keyword names need to match that of VBA
20 TestUtil.AssertEqual(Mid(start:=6, string:="LibreOffice" ), "Office", "Mid() with 2 keyword names" )
21 TestUtil.AssertEqual(Mid(length:=5, start:=1, string:="LibreOffice" ), "Libre", "Mid() with 3 keyword names" )
23 Exit Sub
24 errorHandler:
25 TestUtil.ReportErrorHandler("verify_Mid_method", Err, Error$, Erl)
26 End Sub