tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / basic / qa / basic_coverage / da-DK / cdbl-2.bas
bloba3fb352ea15f3bb66c6196318e59ff91072615f9
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 Function doUnitTest() as String
12 Dim A As String
13 Dim B As Double
14 Dim Expected As Double
15 A = "222,222"
16 ' in da-DK locale ',' is the decimal separator
17 Expected = 222.222
18 B = Cdbl(A)
19 If B <> Expected Then
20 doUnitTest = "FAIL"
21 Else
22 doUnitTest = "OK"
23 End If
24 End Function