You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Word, `Dictionary` is ambiguous, since it could be `Word.Dictionary`
or `Scripting.Dictionary`. Therefore:
- In README, explain how to use VBA-Dictionary (thanks to @retailcoder,
#33 (comment))
- For folks who want to use the native `Scripting.Dictionary`, add a
conditional-compilation parameter.
The more complicated option uses the native `Scripting.Dictionary`, so does
79
+
not require an additional VBA dependency. Take your pick!
80
+
64
81
## TestSuite
65
82
66
83
A test suite groups tests together, runs test hooks for actions that should be run before and after tests, and is responsible for passing test results to reporters.
@@ -108,17 +125,17 @@ With Suite.Test("specific part of your application")
108
125
.NotIncludesArray(1,2,3),4
109
126
.IsApproximate1.001,1.002,2
110
127
.NotApproximate1.001,1.009,3
111
-
128
+
112
129
OnErrorResumeNext
113
-
130
+
114
131
Err.RaisevbObjectError+1,Description:="Uh oh."
115
132
.IsErrorDescription:="Uh oh."
116
-
133
+
117
134
Err.Clear
118
135
.NotError
119
136
120
137
.Pass
121
-
.Fail"e.g. should not have gotten here"
138
+
.Fail"e.g. should not have gotten here"
122
139
.Plan4' Should only be 4 assertions, more or less fails
0 commit comments