Fix default value of Emscripten --with-main-module
[LibreOffice.git] / basic / qa / vba_tests / mid.vb
blobebd326109f5d8655e7678cae0f3fa27f2e4cfda4
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/.
9 Option VBASupport 1
10 Option Explicit
12 Function doUnitTest() As String
13 TestUtil.TestInit
14 verify_testMid
15 doUnitTest = TestUtil.GetResult()
16 End Function
18 Sub verify_testMid()
19 On Error GoTo errorHandler
21 TestUtil.AssertEqual(Mid("Mid Function Demo", 1, 3), "Mid", "Mid(""Mid Function Demo"", 1, 3)")
22 TestUtil.AssertEqual(Mid("Mid Function Demo", 14, 4), "Demo", "Mid(""Mid Function Demo"", 14, 4)")
23 TestUtil.AssertEqual(Mid("Mid Function Demo", 5), "Function Demo", "Mid(""Mid Function Demo"", 5)")
25 ' tdf#141474 keyword names need to match that of VBA
26 TestUtil.AssertEqual(Mid(start:=6, string:="LibreOffice" ), "Office", "Mid() with 2 keyword names" )
27 TestUtil.AssertEqual(Mid(length:=5, start:=1, string:="LibreOffice" ), "Libre", "Mid() with 3 keyword names" )
29 Exit Sub
30 errorHandler:
31 TestUtil.ReportErrorHandler("verify_testMid", Err, Error$, Erl)
32 End Sub