LanguageTool: don't crash if REST protocol isn't set
[LibreOffice.git] / basic / qa / basic_coverage / test_iserror_method.bas
blob83d3f60432a6a3a12d592fd4abaed5d9132cfc86
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 Explicit
11 Type MyType
12 tName as String
13 End Type
15 Function doUnitTest as String
16 dim aVariant as MyType
17 aVariant.tName = "A string"
18 ' ISERROR
19 If ( IsError( aVariant ) ) Then
20 doUnitTest = "FAIL"
21 Else
22 doUnitTest = "OK"
23 End If
24 End Function