3 Dim passCount
As Integer
4 Dim failCount
As Integer
7 Function doUnitTest() As String
8 result
= verify_testMinute()
9 If failCount
<> 0 Or passCount
= 0 Then
18 Function verify_testMinute() As String
23 result
= "Test Results" & Chr
$(10) & "============" & Chr
$(10)
25 Dim testName
As String
27 testName
= "Test Minute function"
28 On Error GoTo errorHandler
31 date1
= Minute("09:34:20")
32 TestLog_ASSERT date1
= date2
, "the return Minute is: " & date1
34 result
= result
& Chr
$(10) & "Tests passed: " & passCount
& Chr
$(10) & "Tests failed: " & failCount
& Chr
$(10)
35 verify_testMinute
= result
39 TestLog_ASSERT (False), testName
& ": hit error handler"
42 Sub TestLog_ASSERT(assertion
As Boolean, Optional testId
As String, Optional testComment
As String)
44 If assertion
= True Then
45 passCount
= passCount
+ 1
48 If Not IsMissing(testId
) Then
49 testMsg
= testMsg
+ " : " + testId
51 If Not IsMissing(testComment
) And Not (testComment
= "") Then
52 testMsg
= testMsg
+ " (" + testComment
+ ")"
55 result
= result
& Chr
$(10) & " Failed: " & testMsg
56 failCount
= failCount
+ 1