File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -147,6 +147,24 @@ Private Function IAccessTestSuite_Run() As AccUnit.IAccessTestSuite
147147 Set IAccessTestSuite_Run = Run()
148148End Function
149149
150+ Public Function SelectTests (ByVal TestNameFilter As Variant ) As DebugPrintTestSuite
151+ m_TestSuite.SelectTests TestNameFilter
152+ Set SelectTests = Me
153+ End Function
154+
155+ Private Function IAccessTestSuite_SelectTests (ByVal TestNameFilter As Variant ) As AccUnit .IAccessTestSuite
156+ Set IAccessTestSuite_SelectTests = SelectTests(TestNameFilter)
157+ End Function
158+
159+ Public Function Filter (ByVal FilterTags As Variant ) As DebugPrintTestSuite
160+ m_TestSuite.Filter FilterTags
161+ Set Filter = Me
162+ End Function
163+
164+ Private Function IAccessTestSuite_Filter (ByVal FilterTags As Variant ) As AccUnit .IAccessTestSuite
165+ Set IAccessTestSuite_Filter = Filter(FilterTags)
166+ End Function
167+
150168Private Property Get IAccessTestSuite_Summary() As AccUnit .ITestSummary
151169 Set IAccessTestSuite_Summary = m_TestSuite.Summary
152170End Property
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ Public Sub SaveResult(ByVal TestResult As AccUnit.ITestResult)
4646 m_Ignored = m_Ignored + 1
4747 ElseIf .IsFailure Or .IsError Then
4848 m_Failed = m_Failed + 1
49- ElseIf .IsSuccess Then
49+ ElseIf .IsPassed Then
5050 m_Passed = m_Passed + 1
5151 End If
5252 End With
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ Option Compare Database
2020Option Explicit
2121
2222'Version nummer
23- Private Const APPLICATION_VERSION As String = "0.9.15.230809 "
23+ Private Const APPLICATION_VERSION As String = "0.9.17.230817 "
2424
2525Private Const APPLICATION_NAME As String = "ACLib AccUnit Loader"
2626Private Const APPLICATION_FULLNAME As String = "Access Code Library - AccUnit Loader"
You can’t perform that action at this time.
0 commit comments