forked from amazingfate/loongoffice
Add missing license headers to a couple of files Change-Id: I7610f922e9ac914ae8fda0d0b6a7ca389401caca Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118489 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
35 lines
1.0 KiB
QBasic
35 lines
1.0 KiB
QBasic
' This file is part of the LibreOffice project.
|
|
'
|
|
' This Source Code Form is subject to the terms of the Mozilla Public
|
|
' License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
' file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
'
|
|
|
|
Option Explicit
|
|
|
|
Function doUnitTest as String
|
|
|
|
doUnitTest = "FAIL"
|
|
|
|
' SPLIT
|
|
If ( Split( "Hello world" )(1) <> "world" ) Then Exit Function
|
|
|
|
' tdf#123025 - split function sets the datatype of the array to empty,
|
|
' preventing any subsequent assignments of values to the array and to the elements itself.
|
|
Dim arr(1) As String
|
|
arr = Split("a/b", "/")
|
|
If ( arr(0) <> "a" Or arr(1) <> "b" ) Then Exit Function
|
|
ReDim Preserve arr(1)
|
|
If ( arr(0) <> "a" Or arr(1) <> "b" ) Then Exit Function
|
|
ReDim arr(1)
|
|
If ( arr(0) <> "" Or arr(1) <> "" ) Then Exit Function
|
|
arr(0) = "a"
|
|
arr(1) = "b"
|
|
If ( arr(0) <> "a" Or arr(1) <> "b" ) Then Exit Function
|
|
ReDim Preserve arr(1)
|
|
If ( arr(0) <> "a" Or arr(1) <> "b" ) Then Exit Function
|
|
|
|
doUnitTest = "OK"
|
|
|
|
End Function
|