3 Dim passCount
As Integer
4 Dim failCount
As Integer
7 Function doUnitTest() As String
8 result
= verify_testCDate()
9 If failCount
<> 0 or passCount
= 0 Then
18 Function verify_testCDate() As String
23 result
= "Test Results" & Chr
$(10) & "============" & Chr
$(10)
25 Dim testName
As String
26 Dim date1
, date2
As Date 'variables for test
27 testName
= "Test CDate function"
28 On Error GoTo errorHandler
31 date1
= CDate("12/02/1969") '02/12/1969
32 TestLog_ASSERT date1
= date2
, "the return CDate is: " & date1
35 date1
= CDate("07/07/1977")
36 TestLog_ASSERT date1
= date2
, "the return CDate is: " & date1
39 date1
= CDate(#
7/7/1977#
)
40 TestLog_ASSERT date1
= date2
, "the return CDate is: " & date1
42 result
= result
& Chr
$(10) & "Tests passed: " & passCount
& Chr
$(10) & "Tests failed: " & failCount
& Chr
$(10)
43 verify_testCDate
= result
47 TestLog_ASSERT (False), testName
& ": hit error handler"
50 Sub TestLog_ASSERT(assertion
As Boolean, Optional testId
As String, Optional testComment
As String)
52 If assertion
= True Then
53 passCount
= passCount
+ 1
56 If Not IsMissing(testId
) Then
57 testMsg
= testMsg
+ " : " + testId
59 If Not IsMissing(testComment
) And Not (testComment
= "") Then
60 testMsg
= testMsg
+ " (" + testComment
+ ")"
63 result
= result
& Chr
$(10) & " Failed: " & testMsg
64 failCount
= failCount
+ 1