forked from amazingfate/loongoffice
cleanup remove duplicate test with other tests Change-Id: I4c82ad9f226f25080199ac0dc3815492fc4c265a Reviewed-on: https://gerrit.libreoffice.org/31860 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Arnaud Versini <arnaud.versini@libreoffice.org>
34 lines
926 B
VB.net
34 lines
926 B
VB.net
'
|
|
' 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/.
|
|
'
|
|
|
|
Function doUnitTest as Integer
|
|
dim aVector as Variant
|
|
' ARRAY
|
|
aVector = Array( Date(), Time(), "Hello", -3.14)
|
|
If (aVector(2) <> "Hello") Then
|
|
doUnitTest = 0
|
|
' LBOUND
|
|
ElseIf ( LBound( aVector() ) <> 0 ) Then
|
|
doUnitTest = 0
|
|
' TYPELEN
|
|
ElseIf ( TypeLen(aVector(2)) <> 5 ) Then
|
|
doUnitTest = 0
|
|
' TYPENAME
|
|
ElseIf ( TypeName(aVector(2)) <> "String" ) Then
|
|
doUnitTest = 0
|
|
' UBOUND already tested
|
|
'ElseIf ( UBound( aVector() ) <> 3 ) Then
|
|
' doUnitTest = 0
|
|
' VARTYPE
|
|
ElseIf ( VarType(aVector(2)) <> 8 ) Then
|
|
doUnitTest = 0
|
|
Else
|
|
doUnitTest = 1
|
|
End If
|
|
End Function
|