Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
c4e301ac
Kaydet (Commit)
c4e301ac
authored
May 13, 2014
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
basic: Add CDec unit test
Change-Id: I9152f00239e5d407f9b33016caadb6a01770fed3
üst
375b01bf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
73 additions
and
0 deletions
+73
-0
test_vba.cxx
basic/qa/cppunit/test_vba.cxx
+1
-0
cdec.vb
basic/qa/vba_tests/cdec.vb
+72
-0
No files found.
basic/qa/cppunit/test_vba.cxx
Dosyayı görüntüle @
c4e301ac
...
@@ -39,6 +39,7 @@ void VBATest::testMiscVBAFunctions()
...
@@ -39,6 +39,7 @@ void VBATest::testMiscVBAFunctions()
{
{
const
char
*
macroSource
[]
=
{
const
char
*
macroSource
[]
=
{
"bytearraystring.vb"
,
"bytearraystring.vb"
,
"cdec.vb"
,
// datevalue test seems to depend on both locale and language
// datevalue test seems to depend on both locale and language
// settings, should try and rewrite the test to deal with that
// settings, should try and rewrite the test to deal with that
// for some reason tinderboxes don't seem to complain leaving enabled
// for some reason tinderboxes don't seem to complain leaving enabled
...
...
basic/qa/vba_tests/cdec.vb
0 → 100644
Dosyayı görüntüle @
c4e301ac
Option
VBASupport
1
Option
Explicit
Dim
passCount
As
Integer
Dim
failCount
As
Integer
Dim
result
As
String
Function
doUnitTest
()
As
String
result
=
verify_testCDec
()
If
failCount
<>
0
And
passCount
>
0
Then
doUnitTest
=
result
Else
doUnitTest
=
"OK"
End
If
End
Function
Function
verify_testCDec
()
as
String
passCount
=
0
failCount
=
0
result
=
"Test Results"
&
Chr
$
(
10
)
&
"============"
&
Chr
$
(
10
)
Dim
testName
As
String
Dim
ret
As
Double
testName
=
"Test CDec function"
On
Error
GoTo
errorHandler
ret
=
CDec
(
""
)
TestLog_ASSERT
ret
=
0
,
"Converts the string to uppercase characters:"
&
ret
ret
=
CDec
(
"1234"
)
TestLog_ASSERT
ret
=
"1234"
,
"Converts the string to uppercase characters:"
&
ret
ret
=
CDec
(
" 1234 "
)
TestLog_ASSERT
ret
=
1234
,
"Converts the string to uppercase characters:"
&
ret
'''''''''''''''
' Those are erroneous, see i#64348
ret
=
CDec
(
"1234-"
)
TestLog_ASSERT
ret
=
-
1234
,
"Converts the string to uppercase characters:"
&
ret
ret
=
CDec
(
" 1234 -"
)
TestLog_ASSERT
ret
=
-
1234
,
"Converts the string to uppercase characters:"
&
ret
ret
=
CDec
(
"79228162514264400000000000000"
)
TestLog_ASSERT
ret
=
62406456049664
,
"Converts the string to uppercase characters:"
&
ret
result
=
result
&
Chr
$
(
10
)
&
"Tests passed: "
&
passCount
&
Chr
$
(
10
)
&
"Tests failed: "
&
failCount
&
Chr
$
(
10
)
verify_testCDec
=
result
Exit
Function
errorHandler
:
TestLog_ASSERT
(
False
),
testName
&
": hit error handler"
End
Function
Sub
TestLog_ASSERT
(
assertion
As
Boolean
,
Optional
testId
As
String
,
Optional
testComment
As
String
)
If
assertion
=
True
Then
passCount
=
passCount
+
1
Else
Dim
testMsg
As
String
If
Not
IsMissing
(
testId
)
Then
testMsg
=
testMsg
+
" : "
+
testId
End
If
If
Not
IsMissing
(
testComment
)
And
Not
(
testComment
=
""
)
Then
testMsg
=
testMsg
+
" ("
+
testComment
+
")"
End
If
result
=
result
&
Chr
$
(
10
)
&
" Failed: "
&
testMsg
failCount
=
failCount
+
1
End
If
End
Sub
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment