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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
|
<?xml version="1.0"?>
<doc>
<assembly>
<name>MbUnit.Framework.2.0</name>
</assembly>
<members>
<member name="T:MbUnit.Framework.GenericAssert">
<summary>
Assertion class
</summary>
</member>
<member name="M:MbUnit.Framework.GenericAssert.IsEmpty``1(System.Collections.Generic.ICollection{``0},System.String,System.Object[])">
<summary>
Assert that an array, list or other collection is empty
</summary>
<param name="collection">An array, list or other collection implementing ICollection</param>
<param name="message">The message to be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.GenericAssert.IsEmpty``1(System.Collections.Generic.ICollection{``0},System.String)">
<summary>
Assert that an array, list or other collection is empty
</summary>
<param name="collection">An array, list or other collection implementing ICollection</param>
<param name="message">The message to be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.GenericAssert.IsEmpty``1(System.Collections.Generic.ICollection{``0})">
<summary>
Assert that an array,list or other collection is empty
</summary>
<param name="collection">An array, list or other collection implementing ICollection</param>
</member>
<member name="M:MbUnit.Framework.GenericAssert.IsNotEmpty``1(System.Collections.Generic.ICollection{``0},System.String,System.Object[])">
<summary>
Assert that an array, list or other collection is empty
</summary>
<param name="collection">An array, list or other collection implementing ICollection</param>
<param name="message">The message to be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.GenericAssert.IsNotEmpty``1(System.Collections.Generic.ICollection{``0},System.String)">
<summary>
Assert that an array, list or other collection is empty
</summary>
<param name="collection">An array, list or other collection implementing ICollection</param>
<param name="message">The message to be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.GenericAssert.IsNotEmpty``1(System.Collections.Generic.ICollection{``0})">
<summary>
Assert that an array,list or other collection is empty
</summary>
<param name="collection">An array, list or other collection implementing ICollection</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.#ctor(System.Object)">
<summary>
Constructor for object
</summary>
<param name="obj">Object to be referred to in methods</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.#ctor(System.String,System.String)">
<summary>
Use this constructor if you plan to test default constructor of a non-public class.
</summary>
<param name="assemblyName"></param>
<param name="className"></param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.#ctor(System.String,System.String,System.Object[])">
<summary>
Use this constructor if you plan to test constructor with arguments of a non-public class.
</summary>
<param name="assemblyName"></param>
<param name="className"></param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetField(System.String)">
<summary>
Get public, non-public, or static field value.
</summary>
<param name="fieldName">Field name.</param>
<returns>Field value</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetField(System.String,MbUnit.Framework.Reflection.AccessModifier)">
<summary>
Get field value.
</summary>
<param name="fieldName">Field name.</param>
<param name="access">Specify field access modifier.</param>
<returns>Field value</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetField(System.String,MbUnit.Framework.Reflection.AccessModifier,System.Boolean)">
<summary>
Get field value.
</summary>
<param name="fieldName">Field name.</param>
<param name="access">Specify field access modifier.</param>
<param name="lookInBase">Specify if need to look in Base classes.</param>
<returns>Field value</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.SetField(System.String,System.Object)">
<summary>
Set field value.
</summary>
<param name="fieldName">Field Name.</param>
<param name="fieldValue">Field Value.</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.SetField(MbUnit.Framework.Reflection.AccessModifier,System.String,System.Object)">
<summary>
Set field value.
</summary>
<param name="fieldName">Field Name.</param>
<param name="fieldValue">Field Value.</param>
<param name="access">Specify field access modifier.</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetProperty(System.String)">
<summary>
Get Property Value
</summary>
<param name="propertyName">Property Name.</param>
<returns>Property Value.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetProperty(MbUnit.Framework.Reflection.AccessModifier,System.String)">
<summary>
Get Property Value
</summary>
<param name="access">Specify property access modifier.</param>
<param name="propertyName">Property Name.</param>
<returns>Property Value.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetProperty(MbUnit.Framework.Reflection.AccessModifier,System.String,System.Boolean)">
<summary>
Get Property Value
</summary>
<param name="access">Specify property access modifier.</param>
<param name="propertyName">Property Name.</param>
<param name="lookInBase">Specify if need to look in Base classes.</param>
<returns>Property Value.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.SetProperty(System.String,System.Object)">
<summary>
Set Property value.
</summary>
<param name="fieldName">Property Name.</param>
<param name="fieldValue">Property Value.</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.SetProperty(MbUnit.Framework.Reflection.AccessModifier,System.String,System.Object)">
<summary>
Set Property value.
</summary>
<param name="access">Specify property access modifier.</param>
<param name="fieldName">Property Name.</param>
<param name="fieldValue">Property Value.</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(System.String)">
<summary>
Execute a NonPublic method with arguments on a object
</summary>
<param name="methodName">Method to call</param>
<returns>The object the method should return.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(System.String,System.Object[])">
<summary>
Execute a NonPublic method with arguments on a object
</summary>
<param name="methodName">Method to call</param>
<param name="methodParams">Method's parameters.</param>
<returns>The object the method should return.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(MbUnit.Framework.Reflection.AccessModifier,System.String,System.Object[])">
<summary>
Execute a NonPublic method with arguments on a object
</summary>
<param name="methodName">Method to call</param>
<param name="access">Specify method access modifier.</param>
<param name="methodParams">Method's parameters.</param>
<returns>The object the method should return.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetNonPublicProperty(System.String)">
<summary>
Gets value of NonPublic property
</summary>
<param name="propName">Property name</param>
<returns>Property value</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetNonPublicField(System.String)">
<summary>
Gets value of NonPublic field.
</summary>
<param name="fieldName">NonPublic field name</param>
<returns>Field value</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetPrivateVariable(System.String)">
<summary>
Get the value from a NonPublic variable or field.
</summary>
<param name="obj">Object which contains field</param>
<param name="variableName">Field Name</param>
<returns></returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.RunPrivateMethod(System.String)">
<summary>
Execute a NonPublic method without arguments on a object
</summary>
<param name="obj">Object to call method on</param>
<param name="methodName">Method to call</param>
<returns>The object the method should return.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.RunPrivateMethod(System.String,System.Object[])">
<summary>
Execute a NonPublic method with arguments on a object
</summary>
<param name="obj">Object to call method on</param>
<param name="methodName">Method to call</param>
<returns>The object the method should return.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.CreateInstance(System.String,System.String)">
<summary>
Create Instance
</summary>
<param name="assemblyName">Full assembly path.</param>
<param name="className">Type Name such as (System.String)</param>
<returns>Newly created object.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.CreateInstance(System.String,System.String,System.Object[])">
<summary>
Create Instance
</summary>
<param name="assemblyName">Full assembly path.</param>
<param name="className">Type Name such as (System.String)</param>
<param name="args">Constructor parameters.</param>
<returns>Newly created object.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetField(System.Object,System.String)">
<summary>
Get public, non-public, or static field value.
</summary>
<param name="obj">Object where field is defined.</param>
<param name="fieldName">Field name.</param>
<returns>Field value</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetField(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String)">
<summary>
Get field value.
</summary>
<param name="access">Specify field access modifier.</param>
<param name="obj">Object where field is defined.</param>
<param name="fieldName">Field name.</param>
<returns>Field value</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetField(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Boolean)">
<summary>
Get field value.
</summary>
<param name="access">Specify field access modifier.</param>
<param name="obj">Object where field is defined.</param>
<param name="fieldName">Field name.</param>
<param name="lookInBase">Specify if need to look in Base classes.</param>
<returns>Field value</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.SetField(System.Object,System.String,System.Object)">
<summary>
Set field value.
</summary>
<param name="obj">Object where field is defined.</param>
<param name="fieldName">Field Name.</param>
<param name="fieldValue">Field Value.</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.SetField(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Object)">
<summary>
Set field value.
</summary>
<param name="access">Specify field access modifier.</param>
<param name="obj">Object where field is defined.</param>
<param name="fieldName">Field Name.</param>
<param name="fieldValue">Field Value.</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.SetField(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Object,System.Boolean)">
<summary>
Set field value.
</summary>
<param name="access">Specify field access modifier.</param>
<param name="obj">Object where field is defined.</param>
<param name="fieldName">Field Name.</param>
<param name="fieldValue">Field Value.</param>
<param name="lookInBase">Specify if need to look in Base classes.</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetProperty(System.Object,System.String)">
<summary>
Get Property Value
</summary>
<param name="obj">Object where property is defined.</param>
<param name="propertyName">Property Name.</param>
<returns>Property Value.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetProperty(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String)">
<summary>
Get Property Value
</summary>
<param name="access">Specify property access modifier.</param>
<param name="propertyName">Property Name.</param>
<returns>Property Value.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetProperty(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Boolean)">
<summary>
Get Property Value
</summary>
<param name="access">Specify property access modifier.</param>
<param name="propertyName">Property Name.</param>
<param name="lookInBase">Set to true if need look for the property in base classes.</param>
<returns>Property Value.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.SetProperty(System.Object,System.String,System.Object)">
<summary>
Set Property value.
</summary>
<param name="obj">Object where property is defined.</param>
<param name="fieldName">Property Name.</param>
<param name="fieldValue">Property Value.</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.SetProperty(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Object)">
<summary>
Set Property value.
</summary>
<param name="access">Specify property access modifier.</param>
<param name="obj">Object where property is defined.</param>
<param name="fieldName">Property Name.</param>
<param name="fieldValue">Property Value.</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.SetProperty(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Object,System.Boolean)">
<summary>
Set Property value.
</summary>
<param name="access">Specify property access modifier.</param>
<param name="obj">Object where property is defined.</param>
<param name="fieldName">Property Name.</param>
<param name="fieldValue">Property Value.</param>
<param name="lookInBase">Set to true if need look for the property in base classes.</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(System.Object,System.String)">
<summary>
Execute a NonPublic method with arguments on a object
</summary>
<param name="obj">Object where method is defined.</param>
<param name="methodName">Method to call</param>
<returns>The object the method should return.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(System.Object,System.String,System.Object[])">
<summary>
Execute a NonPublic method with arguments on a object
</summary>
<param name="obj">Object where method is defined.</param>
<param name="methodName">Method to call</param>
<param name="methodParams">Method's parameters.</param>
<returns>The object the method should return.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Object[])">
<summary>
Execute a NonPublic method with arguments on a object
</summary>
<param name="access">Specify method access modifier.</param>
<param name="obj">Object where method is defined.</param>
<param name="methodName">Method to call</param>
<param name="methodParams">Method's parameters.</param>
<returns>The object the method should return.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Boolean,System.Object[])">
<summary>
Execute a NonPublic method with arguments on a object
</summary>
<param name="access">Specify method access modifier.</param>
<param name="obj">Object where method is defined.</param>
<param name="methodName">Method to call</param>
<param name="methodParams">Method's parameters.</param>
<returns>The object the method should return.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.RunNonPublicMethod(System.Object,System.String)">
<summary>
Execute a NonPublic method on a object
</summary>
<param name="obj">Object to call method on</param>
<param name="methodName">Method to call</param>
<returns></returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetNonPublicVariable(System.Object,System.String)">
<summary>
Get the value from a NonPublic variable or field.
</summary>
<param name="obj">Object which contains field</param>
<param name="variableName">Field Name</param>
<returns></returns>
</member>
</members>
</doc>
|