-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestStart.bas
More file actions
33 lines (25 loc) · 766 Bytes
/
TestStart.bas
File metadata and controls
33 lines (25 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Attribute VB_Name = "TestStart"
Option Explicit
Public Sub run_tests(Optional pTags)
Dim feature_runner As TFeatureRunner
Dim tesTFeatures As Variant
Dim Log As logger
Set Log = New logger
tesTFeatures = Array(New Feature_ApplyRules, New Feature_Rule_Permitted_Fonts)
Set feature_runner = New TFeatureRunner
feature_runner.run_tesTFeatures tesTFeatures, pTags
End Sub
Public Sub run_acceptance_tests()
TestStart.run_tests "feature"
End Sub
Public Sub run_acceptance_wip_tests()
'wip = work in progress
TestStart.run_tests "feature,wip"
End Sub
Public Sub run_unit_tests()
TestStart.run_tests "unit"
End Sub
Public Sub run_unit_wip_tests()
'wip = work in progress
TestStart.run_tests "unit,wip"
End Sub