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_Left_method
17 On Error GoTo errorHandler
20 TestUtil
.AssertEqual(Left("abc", 2), "ab", "Left(""abc"",2)")
22 ' tdf#141474 keyword names need to match that of VBA
23 TestUtil
.AssertEqual(Left(Length
:=4, String:="sometext"), "some", "Left(Length:=4, String:=""sometext"")")
27 TestUtil
.ReportErrorHandler("verify_Left_method", Err
, Error$, Erl
)