Bump version to 6.4.7.2.M8
[LibreOffice.git] / basic / qa / vba_tests / string.vb
blob79496738c56cc9d4c3c902b7e766c4f4ac5b0f19
1 Option VBASupport 1
2 Option Explicit
3 Dim passCount As Integer
4 Dim failCount As Integer
5 Dim result As String
7 Function doUnitTest() As String
8 result = verify_testString()
9 If failCount <> 0 or passCount = 0 Then
10 doUnitTest = result
11 Else
12 doUnitTest = "OK"
13 End If
14 End Function
18 Function verify_testString() As String
20 passCount = 0
21 failCount = 0
23 result = "Test Results" & Chr$(10) & "============" & Chr$(10)
25 Dim testName As String
26 Dim TestStr As String
27 Dim date1, date2
28 testName = "Test String function"
29 On Error GoTo errorHandler
31 date2 = "PPPPP"
32 date1 = String(5, "P")
33 TestLog_ASSERT date1 = date2, "the return String is: " & date1
35 date2 = "aaaaa"
36 date1 = String(5, "a")
37 TestLog_ASSERT date1 = date2, "the return String is: " & date1
39 date2 = ""
40 date1 = String(0, "P")
41 TestLog_ASSERT date1 = date2, "the return String is: " & date1
43 result = result & Chr$(10) & "Tests passed: " & passCount & Chr$(10) & "Tests failed: " & failCount & Chr$(10)
44 verify_testString = result
46 Exit Function
47 errorHandler:
48 TestLog_ASSERT (False), testName & ": hit error handler"
49 End Function
51 Sub TestLog_ASSERT(assertion As Boolean, Optional testId As String, Optional testComment As String)
53 If assertion = True Then
54 passCount = passCount + 1
55 Else
56 Dim testMsg As String
57 If Not IsMissing(testId) Then
58 testMsg = testMsg + " : " + testId
59 End If
60 If Not IsMissing(testComment) And Not (testComment = "") Then
61 testMsg = testMsg + " (" + testComment + ")"
62 End If
64 result = result & Chr$(10) & " Failed: " & testMsg
65 failCount = failCount + 1
66 End If
68 End Sub