repo.or.cz
/
LibreOffice.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Rename LibreOffice Basic test files from .vb to .bas: they are not VBA
[LibreOffice.git]
/
basic
/
qa
/
basic_coverage
/
da-DK
/
cdbl-2.bas
blob
46468ac63f316a767420b95ce786a768116b6475
1
Function
doUnitTest
()
as
String
2
Dim
A
As
String
3
Dim
B
As
Double
4
Dim
Expected
As
Double
5
A
=
"222,222"
6
' in da-DK locale ',' is the decimal separator
7
Expected
=
222.222
8
B
=
Cdbl
(
A
)
9
If
B
<>
Expected
Then
10
doUnitTest
=
"FAIL"
11
Else
12
doUnitTest
=
"OK"
13
End If
14
End Function