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>
28 lines
732 B
VB.net
28 lines
732 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
|
|
Wait(0)
|
|
Beep
|
|
'dim aDate as Variant
|
|
'aDate = Date()
|
|
'WaitUntil( aDate )
|
|
' CompatibilityMode
|
|
If (CompatibilityMode(True) <> True) Then
|
|
doUnitTest = 0
|
|
' ConvertFromUrl ConvertToUrl
|
|
ElseIf ( ConvertToUrl( ConvertFromUrl("") ) <> "") Then
|
|
doUnitTest = 0
|
|
' GetSolarVersion
|
|
ElseIf ( GetSolarVersion() < 50000) Then
|
|
doUnitTest = 0
|
|
Else
|
|
doUnitTest = 1
|
|
End If
|
|
End Function
|