-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDescriptions.xml
More file actions
251 lines (245 loc) · 14.6 KB
/
Descriptions.xml
File metadata and controls
251 lines (245 loc) · 14.6 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
This file contains the descriptions and titles for all VIs in the project to streamline the process of updating them.
It is used by 'Update Descriptions.vi'.
-->
<libraries>
<library basepath="src/Transparent Assertions" path="Transparent Assertions.lvlib">
<item path="Assert Count.vi">
<title>Assert Count (Transparent Assertions)</title>
<description>
Asserts that the number of elements in an array, set, or map matches the expected count. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Not Count.vi">
<title>Assert Not Count (Transparent Assertions)</title>
<description>
Asserts that the number of elements in an array, set, or map does not match the expected count. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert False.vi">
<title>Assert False (Transparent Assertions)</title>
<description>
Asserts that a condition is <B>false</B>. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert True.vi">
<title>Assert True (Transparent Assertions)</title>
<description>
Asserts that a condition is <B>true</B>. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Equal.vi">
<title>Assert Equal (Transparent Assertions)</title>
<description>
Asserts that two values are equal. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Not Equal.vi">
<title>Assert Not Equal (Transparent Assertions)</title>
<description>
Asserts that two values are not equal. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Error Code.vi">
<title>Assert Error Code (Transparent Assertions)</title>
<description>
Asserts that the error code of <B>error in</B> matches the expected value. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Not Error Code.vi">
<title>Assert Not Error Code (Transparent Assertions)</title>
<description>
Asserts that the error code of <B>error in</B> does not match the expected value. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Error Message Contains String.vi">
<title>Assert Error Message Contains String (Transparent Assertions)</title>
<description>
Asserts that the error message of <B>error in</B> matches the expected message. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Error.vi">
<title>Assert Error (Transparent Assertions)</title>
<description>
Asserts that <B>error in</B> indicates an error. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Not Error.vi">
<title>Assert Not Error (Transparent Assertions)</title>
<description>
Asserts that <B>error in</B> does not indicate an error. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Not Refnum.vi">
<title>Assert Not Refnum (Transparent Assertions)</title>
<description>
Asserts that a refnum is not valid. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Refnum.vi">
<title>Assert Refnum (Transparent Assertions)</title>
<description>
Asserts that a refnum is valid. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert String Contains String Ignoring Case.vi">
<title>Assert String Contains String Ignoring Case (Transparent Assertions)</title>
<description>
Asserts that a string contains the expected substring, ignoring case differences. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert String Contains String.vi">
<title>Assert String Contains String (Transparent Assertions)</title>
<description>
Asserts that a string contains the expected substring. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert String Not Contains String Ignoring Case.vi">
<title>Assert String Not Contains String Ignoring Case (Transparent Assertions)</title>
<description>
Asserts that a string does not contain the expected substring, ignoring case differences. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert String Not Contains String.vi">
<title>Assert String Not Contains String (Transparent Assertions)</title>
<description>
Asserts that a string does not contain the expected substring. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Not Type.vi">
<title>Assert Not Type (Transparent Assertions)</title>
<description>
Asserts that a value is not of the expected type. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Type.vi">
<title>Assert Type (Transparent Assertions)</title>
<description>
Asserts that a value is of the expected type. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Same Type.vi">
<title>Assert Same Type (Transparent Assertions)</title>
<description>
Asserts that two values are of the same type. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Not Same Type.vi">
<title>Assert Not Same Type (Transparent Assertions)</title>
<description>
Asserts that two values are not of the same type. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Greater Than.vi">
<title>Assert Greater Than (Transparent Assertions)</title>
<description>
Asserts that a value is greater than the expected value. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Greater Than or Equal To.vi">
<title>Assert Greater Than or Equal To (Transparent Assertions)</title>
<description>
Asserts that a value is greater than or equal to the expected value. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Less Than.vi">
<title>Assert Less Than (Transparent Assertions)</title>
<description>
Asserts that a value is less than the expected value. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Less Than or Equal To.vi">
<title>Assert Less Than or Equal To (Transparent Assertions)</title>
<description>
Asserts that a value is less than or equal to the expected value. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert In Range.vi">
<title>Assert In Range (Transparent Assertions)</title>
<description>
Asserts that a value is greater than or equal to the maximum value and less than or equal to the minimum value. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Not In Range.vi">
<title>Assert Not In Range (Transparent Assertions)</title>
<description>
Asserts that a value is not greater than or equal to the maximum value and not less than or equal to the minimum value. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert String Starts With.vi">
<title>Assert String Starts With (Transparent Assertions)</title>
<description>
Asserts that a string starts with the expected prefix. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert String Not Starts With.vi">
<title>Assert String Not Starts With (Transparent Assertions)</title>
<description>
Asserts that a string does not start with the expected prefix. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert String Ends With.vi">
<title>Assert String Ends With (Transparent Assertions)</title>
<description>
Asserts that a string ends with the expected suffix. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert String Not Ends With.vi">
<title>Assert String Not Ends With (Transparent Assertions)</title>
<description>
Asserts that a string does not end with the expected suffix. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Collection Contains.vi">
<title>Assert Collection Contains (Transparent Assertions)</title>
<description>
Asserts that a collection (array, set, or map) contains the expected value. Returns an error if the assertion fails, and optionally appends a custom message to the error.
For maps, the expected value is compared against the values in the map.
</description>
</item>
<item path="Assert Collection Not Contains.vi">
<title>Assert Collection Not Contains (Transparent Assertions)</title>
<description>
Asserts that a collection (array, set, or map) does not contain the expected value. Returns an error if the assertion fails, and optionally appends a custom message to the error.
For maps, the expected value is compared against the values in the map.
</description>
</item>
<item path="Assert Collection Distinct.vi">
<title>Assert Collection Distinct (Transparent Assertions)</title>
<description>
Asserts that all elements in a collection (array or map) are distinct. Returns an error if the assertion fails, and optionally appends a custom message to the error.
For maps, the values are compared for distinctness.
This assertion is not needed for sets, because sets can only contain distinct elements by definition.
</description>
</item>
<item path="Assert Collection Empty.vi">
<title>Assert Collection Empty (Transparent Assertions)</title>
<description>
Asserts that a collection (array, set, or map) is empty. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Collection Not Empty.vi">
<title>Assert Collection Not Empty (Transparent Assertions)</title>
<description>
Asserts that a collection (array, set, or map) is not empty. Returns an error if the assertion fails, and optionally appends a custom message to the error.
</description>
</item>
<item path="Assert Collection Equivalent.vi">
<title>Assert Collection Equivalent (Transparent Assertions)</title>
<description>
Asserts that two collections (arrays, sets, or maps) are equivalent. Returns an error if the assertion fails, and optionally appends a custom message to the error.
Collections are considered equivalent if they contain the same elements, regardless of order.
For maps, the values are compared for equivalence.
</description>
</item>
</library>
<library basepath="src/Transparent Assertions" path="Transparent Assertions.lvlib">
<item path="Test Framework.vi">
<title>Test Framework</title>
<description>
Gets or sets the test framework used for assertions. If the framework is set to <B>Unknown</B>, the library will automatically detect an appropriate test framework based on the application context.
</description>
</item>
</library>
</libraries>