main
1<?xml version="1.0" encoding="utf-8"?>
2<doc>
3 <assembly>
4 <name>MbUnit.Framework</name>
5 </assembly>
6 <members>
7 <member name="T:MbUnit.Core.AssemblyEventArgs">
8 <summary>Event argument that contains an assembly.</summary>
9 </member>
10 <member name="P:MbUnit.Core.Fixture.IsIgnored">
11 <summary>Returns true if the entire test fixture is ignored.</summary>
12 </member>
13 <member name="T:MbUnit.Core.MethodSignature">
14 <summary>TODO - Add class summary</summary>
15 </member>
16 <member name="T:MbUnit.Core.ResourceHelper">
17 <summary>Static helper functions for retreiving resources This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
18 </member>
19 <member name="M:MbUnit.Core.ResourceHelper.CreateImages(System.String)">
20 <summary>Creates and saves the images in the directory with the specified path.</summary>
21 <param name="path">The directory path in which to save the images</param>
22 </member>
23 <member name="T:MbUnit.Core.RunPipe">
24 <summary>This class represents the execution pipe of a test. It contains a sequence of <see cref="T:MbUnit.Core.Invokers.IRunInvoker" />.</summary>
25 </member>
26 <member name="T:MbUnit.Core.RunPipeEventArgs">
27 <summary>TODO - Add class summary</summary>
28 </member>
29 <member name="T:MbUnit.Core.TypeEventArgs">
30 <summary>Event argument that carries a <see cref="P:MbUnit.Core.TypeEventArgs.Type" /> instance.</summary>
31 </member>
32 <member name="T:MbUnit.Core.TypeHelper">
33 <summary>Helper static class for Type related tasks This class cannot be inherited.</summary>
34 </member>
35 <member name="M:MbUnit.Core.TypeHelper.CreateInstance(System.Type)">
36 <summary>Creates an instance of the type <paramref name="t" /> using the default Method.</summary>
37 <param name="t">type to instanciate</param>
38 <returns>type <paramref name="t" /> instance</returns>
39 </member>
40 <member name="M:MbUnit.Core.TypeHelper.CreateInstance(System.Type,System.Object[])">
41 <summary>Creates an instance of the type <paramref name="t" /> using the Method that matches the signature defined by <paramref name="args" /></summary>
42 <param name="t">type to instanciate</param>
43 <param name="args">argument of the Method</param>
44 <returns>type <paramref name="t" /> instance initialized using <paramref name="args" /></returns>
45 </member>
46 <member name="M:MbUnit.Core.TypeHelper.GetAttributedMethod(System.Type,System.Type)">
47 <summary>Gets the first method of the type <paramref name="t" /> that is tagged by a <paramref name="customAttributeType" /> instance.</summary>
48 <param name="t">type to test</param>
49 <param name="customAttributeType">custom attribute type to search</param>
50 <returns>First method of <paramref name="t" /> that that is tagged by a <paramref name="customAttributeType" /> instance, null if no method is tagged by the specified attribute type.</returns>
51 <exception cref="T:System.ArgumentNullException">
52 <paramref name="t" /> or <paramref name="customAttributeType" /> is a null reference </exception>
53 </member>
54 <member name="M:MbUnit.Core.TypeHelper.GetAttributedMethods(System.Type,System.Type)">
55 <summary>Gets all methods of the type <paramref name="t" /> that are tagged by a <paramref name="customAttributeType" /> instance.</summary>
56 <param name="t">type to test</param>
57 <param name="customAttributeType">custom attribute type to search</param>
58 <returns>
59 <see cref="T:System.Reflection.MethodInfo" /> collection of type <paramref name="t" /> that that are tagged by a <paramref name="customAttributeType" /> instance.</returns>
60 <exception cref="T:System.ArgumentNullException">
61 <paramref name="t" /> or <paramref name="customAttributeType" /> is a null reference </exception>
62 </member>
63 <member name="M:MbUnit.Core.TypeHelper.GetConstructor(System.Type,System.Type[])">
64 <summary>Retreives the <see cref="T:System.Reflection.MethodInfo" /> that matches the signature.</summary>
65 <param name="t">type to test</param>
66 <param name="types">Method parameter types</param>
67 <returns>The <see cref="T:System.Reflection.MethodInfo" /> instance of <paramref name="t" /> matching the signature.</returns>
68 <exception cref="T:System.ArgumentNullException">
69 <paramref name="t" /> is a null reference</exception>
70 <exception cref="T:MbUnit.Core.Exceptions.MethodNotFoundException"> No Method of type <paramref name="t" /> match the signature defined by <paramref name="types" />. </exception>
71 </member>
72 <member name="M:MbUnit.Core.TypeHelper.GetConstructor(System.Type,System.Object[])">
73 <summary>Retreives the <see cref="T:System.Reflection.MethodInfo" /> that matches the signature, given the list of arguments.</summary>
74 <param name="t">type to test</param>
75 <param name="args">Method arguments from which the signature is deduced</param>
76 <returns>The <see cref="T:System.Reflection.MethodInfo" /> instance of <paramref name="t" /> matching the signature defined by the list of arguments.</returns>
77 <exception cref="T:System.ArgumentNullException">
78 <paramref name="t" /> is a null reference</exception>
79 <exception cref="T:System.ArgumentNullException"> One of the args item is a null reference </exception>
80 <exception cref="T:MbUnit.Core.Exceptions.MethodNotFoundException"> No Method of type <paramref name="t" /> match the signature defined by <paramref name="args" />. </exception>
81 </member>
82 <member name="M:MbUnit.Core.TypeHelper.GetFirstCustomAttribute(System.Reflection.ICustomAttributeProvider,System.Type)">
83 <summary>Gets the first instance of <paramref name="customAttributeType" /> from the method <paramref name="mi" /> custom attributes.</summary>
84 <param name="mi">Method to test</param>
85 <param name="customAttributeType">custom attribute type to search</param>
86 <returns>First instance of <paramref name="customAttributeTyp" /> from the method <paramref name="mi" /> custom attributes.</returns>
87 <exception cref="T:System.ArgumentNullException">
88 <paramref name="mi" /> or <paramref name="customAttributeType" /> is a null reference </exception>
89 <exception cref="T:System.ArgumentException">
90 <paramref name="mi" /> is not tagged by an attribute of type <paramref name="customAttributeType" /></exception>
91 </member>
92 <member name="M:MbUnit.Core.TypeHelper.GetIndexer(System.Type,System.Type[])">
93 <summary>Retreives the indexer that matches the signature</summary>
94 <param name="t">type that holds the indexer</param>
95 <param name="args">indexer arguments</param>
96 </member>
97 <member name="M:MbUnit.Core.TypeHelper.GetValue(System.Reflection.PropertyInfo,System.Object,System.Object[])">
98 <summary>Gets the value of the property <paramref name="pi" />.</summary>
99 <param name="pi">property</param>
100 <param name="o">object instnace</param>
101 <param name="args">property arguments (in case of an indexer</param>
102 <returns>property value</returns>
103 </member>
104 <member name="M:MbUnit.Core.TypeHelper.HasConstructor(System.Type,System.Type[])">
105 <summary>Gets a value indicating if the type <paramref name="t" /> contains a Method with the signature defined by <paramref name="types" />.</summary>
106 <param name="t">type to test</param>
107 <param name="types">arguments of the Method</param>
108 <returns>true if <paramref name="t" /> contains a Method matching types</returns>
109 <exception cref="T:System.ArgumentNullException">t is a null reference</exception>
110 </member>
111 <member name="M:MbUnit.Core.TypeHelper.HasCustomAttribute(System.Type,System.Type)">
112 <summary>Gets a value indicating if the <paramref name="t" /> is tagged by a <paramref name="customAttributeType" /> instance.</summary>
113 <param name="t">method to test</param>
114 <param name="customAttributeType">custom attribute type to search</param>
115 <returns>true if <paramref name="t" /> is tagged by a <paramref name="customAttributeType" /> attribute, false otherwise.</returns>
116 <exception cref="T:System.ArgumentNullException">
117 <paramref name="t" /> or <paramref name="customAttributeType" /> is a null reference </exception>
118 </member>
119 <member name="M:MbUnit.Core.TypeHelper.HasCustomAttribute(System.Reflection.ICustomAttributeProvider,System.Type)">
120 <summary>Gets a value indicating if the method info <paramref name="t" /> is tagged by a <paramref name="customAttributeType" /> instance.</summary>
121 <param name="t">method to test</param>
122 <param name="customAttributeType">custom attribute type to search</param>
123 <returns>true if <paramref name="t" /> is tagged by a <paramref name="customAttributeType" /> attribute, false otherwise.</returns>
124 <exception cref="T:System.ArgumentNullException">
125 <paramref name="t" /> or <paramref name="customAttributeType" /> is a null reference </exception>
126 </member>
127 <member name="M:MbUnit.Core.TypeHelper.HasIndexer(System.Type,System.Type[])">
128 <summary>Gets a value indicating if the type <paramref name="t" /> has an indexer that takes <paramref name="args" /> arguments.</summary>
129 <param name="t">type that holds the indexer</param>
130 <param name="args">indexer arguments</param>
131 <returns>true if an indexer that matched the signature was found, false otherwise</returns>
132 </member>
133 <member name="M:MbUnit.Core.TypeHelper.HasMethodCustomAttribute(System.Type,System.Type)">
134 <summary>Gets a value indicating the class type <paramref name="t" /> has a method that is tagged by a <paramref name="customAttributeType" /> instance.</summary>
135 <param name="t">type to test</param>
136 <param name="customAttributeType">custom attribute type to search</param>
137 <returns>true if class type <paramref name="t" /> has a method tagged by a <paramref name="customAttributeType" /> attribute, false otherwise.</returns>
138 <exception cref="T:System.ArgumentNullException">
139 <paramref name="t" /> or <paramref name="customAttributeType" /> is a null reference </exception>
140 </member>
141 <member name="M:MbUnit.Core.TypeHelper.ParametersMatch(System.Reflection.ParameterInfo[],System.Type[])">
142 <summary>Gets a value indicating if the <paramref name="parameters" /> match the <paramref name="types" /></summary>
143 <param name="parameters">property or method paramter info</param>
144 <param name="types">tested signature</param>
145 </member>
146 <member name="M:MbUnit.Core.TypeHelper.ShowMethodAttributes(System.Type)">
147 <summary>Output the methods and their custom attributes to the console. (Debugging method)</summary>
148 <param name="t">type to visit</param>
149 <exception cref="T:System.ArgumentNullException">
150 <paramref name="t" /> is a null reference </exception>
151 <exception cref="T:System.ArgumentException">
152 <paramref name="t" /> is anot a class type. </exception>
153 </member>
154 <member name="M:MbUnit.Core.TypeHelper.TryGetFirstCustomAttribute(System.Reflection.ICustomAttributeProvider,System.Type)">
155 <summary>Gets the first instance of <paramref name="customAttributeType" /> from the method <paramref name="mi" /> custom attributes.</summary>
156 <param name="mi">Method to test</param>
157 <param name="customAttributeType">custom attribute type to search</param>
158 <returns>First instance of <paramref name="customAttributeTyp" /> from the method <paramref name="mi" /> custom attributes; otherwize a null reference</returns>
159 <exception cref="T:System.ArgumentNullException">
160 <paramref name="mi" /> or <paramref name="customAttributeType" /> is a null reference </exception>
161 </member>
162 <member name="T:MbUnit.Core.AssemblyEventHandler">
163 <summary>Assembly event delegate</summary>
164 </member>
165 <member name="T:MbUnit.Core.TypeEventHandler">
166 <summary>Type event delegate</summary>
167 </member>
168 <member name="T:MbUnit.Core.Collections.AssemblyCollection">
169 <summary>A collection of elements of type Assembly This class cannot be inherited.</summary>
170 </member>
171 <member name="P:MbUnit.Core.Collections.AssemblyCollection.Item(System.Int32)">
172 <summary>Gets or sets the Assembly at the given index in this AssemblyCollection.</summary>
173 </member>
174 <member name="M:MbUnit.Core.Collections.AssemblyCollection.Add(System.Reflection.Assembly)">
175 <summary>Adds an instance of type Assembly to the end of this AssemblyCollection.</summary>
176 <param name="value">The Assembly to be added to the end of this AssemblyCollection.</param>
177 </member>
178 <member name="M:MbUnit.Core.Collections.AssemblyCollection.Contains(System.Reflection.Assembly)">
179 <summary>Determines whether a specfic Assembly value is in this AssemblyCollection.</summary>
180 <param name="value">The Assembly value to locate in this AssemblyCollection.</param>
181 <returns>true if value is found in this AssemblyCollection; false otherwise.</returns>
182 </member>
183 <member name="M:MbUnit.Core.Collections.AssemblyCollection.GetEnumerator">
184 <summary>Returns an enumerator that can iterate through the elements of this AssemblyCollection.</summary>
185 <returns>An object that implements System.Collections.IEnumerator.</returns>
186 </member>
187 <member name="M:MbUnit.Core.Collections.AssemblyCollection.Remove(System.Reflection.Assembly)">
188 <summary>Removes the first occurrence of a specific Assembly from this AssemblyCollection.</summary>
189 <param name="value">The Assembly value to remove from this AssemblyCollection.</param>
190 </member>
191 <member name="T:MbUnit.Core.Collections.AssemblyCollection.Enumerator">
192 <summary>Type-specific enumeration class, used by AssemblyCollection.GetEnumerator. This class cannot be inherited.</summary>
193 </member>
194 <member name="T:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary">
195 <summary>A dictionary with keys of type Assembly and values of type TypeCollection This class cannot be inherited.</summary>
196 </member>
197 <member name="P:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Item(System.Reflection.Assembly)">
198 <summary>Gets or sets the TypeCollection associated with the given Assembly</summary>
199 <param name="key">The Assembly whose value to get or set.</param>
200 </member>
201 <member name="P:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Keys">
202 <summary>Gets a collection containing the keys in this AssemblyTypeCollectionDictionary.</summary>
203 </member>
204 <member name="P:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Values">
205 <summary>Gets a collection containing the values in this AssemblyTypeCollectionDictionary.</summary>
206 </member>
207 <member name="M:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Add(System.Reflection.Assembly)">
208 <summary>Adds an element with the specified key and value to this AssemblyTypeCollectionDictionary.</summary>
209 <param name="key">The Assembly key of the element to add.</param>
210 </member>
211 <member name="M:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Contains(System.Reflection.Assembly)">
212 <summary>Determines whether this AssemblyTypeCollectionDictionary contains a specific key.</summary>
213 <param name="key">The Assembly key to locate in this AssemblyTypeCollectionDictionary.</param>
214 <returns>true if this AssemblyTypeCollectionDictionary contains an element with the specified key; otherwise, false.</returns>
215 </member>
216 <member name="M:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Remove(System.Reflection.Assembly)">
217 <summary>Removes the element with the specified key from this AssemblyTypeCollectionDictionary.</summary>
218 <param name="key">The Assembly key of the element to remove.</param>
219 </member>
220 <member name="M:MbUnit.Core.Collections.FixtureCollection.Add(MbUnit.Core.Fixture)">
221 <summary>Adds an instance of type Fixture to the end of this FixtureCollection.</summary>
222 <param name="value">The Fixture to be added to the end of this FixtureCollection.</param>
223 </member>
224 <member name="M:MbUnit.Core.Collections.FixtureCollection.Contains(MbUnit.Core.Fixture)">
225 <summary>Determines whether a specfic Fixture value is in this FixtureCollection.</summary>
226 <param name="value">The Fixture value to locate in this FixtureCollection.</param>
227 <returns>true if value is found in this FixtureCollection; false otherwise.</returns>
228 </member>
229 <member name="M:MbUnit.Core.Collections.FixtureCollection.GetEnumerator">
230 <summary>Returns an enumerator that can iterate through the elements of this FixtureCollection.</summary>
231 <returns>An object that implements System.Collections.IEnumerator.</returns>
232 </member>
233 <member name="M:MbUnit.Core.Collections.FixtureCollection.Remove(MbUnit.Core.Fixture)">
234 <summary>Removes the first occurrence of a specific Fixture from this FixtureCollection.</summary>
235 <param name="value">The Fixture value to remove from this FixtureCollection.</param>
236 </member>
237 <member name="T:MbUnit.Core.Collections.FixtureCollection.Enumerator">
238 <summary>Type-specific enumeration class, used by FixtureCollection.GetEnumerator. This class cannot be inherited.</summary>
239 </member>
240 <member name="T:MbUnit.Core.Collections.FixtureFactoryCollection">
241 <summary>A collection of elements of type IFixtureFactory This class cannot be inherited.</summary>
242 </member>
243 <member name="M:MbUnit.Core.Collections.FixtureFactoryCollection.Add(MbUnit.Core.IFixtureFactory)">
244 <summary>Adds an instance of type IFixtureFactory to the end of this FixtureFactoryCollection.</summary>
245 <param name="value">The IFixtureFactory to be added to the end of this FixtureFactoryCollection.</param>
246 </member>
247 <member name="M:MbUnit.Core.Collections.FixtureFactoryCollection.Contains(MbUnit.Core.IFixtureFactory)">
248 <summary>Determines whether a specfic IFixtureFactory value is in this FixtureFactoryCollection.</summary>
249 <param name="value">The IFixtureFactory value to locate in this FixtureFactoryCollection.</param>
250 <returns>true if value is found in this FixtureFactoryCollection; false otherwise.</returns>
251 </member>
252 <member name="M:MbUnit.Core.Collections.FixtureFactoryCollection.GetEnumerator">
253 <summary>Returns an enumerator that can iterate through the elements of this FixtureFactoryCollection.</summary>
254 <returns>An object that implements System.Collections.IEnumerator.</returns>
255 </member>
256 <member name="M:MbUnit.Core.Collections.FixtureFactoryCollection.Remove(MbUnit.Core.IFixtureFactory)">
257 <summary>Removes the first occurrence of a specific IFixtureFactory from this FixtureFactoryCollection.</summary>
258 <param name="value">The IFixtureFactory value to remove from this FixtureFactoryCollection.</param>
259 </member>
260 <member name="T:MbUnit.Core.Collections.FixtureFactoryCollection.Enumerator">
261 <summary>Type-specific enumeration class, used by FixtureFactoryCollection.GetEnumerator. This class cannot be inherited.</summary>
262 </member>
263 <member name="T:MbUnit.Core.Collections.RunCollection">
264 <summary>A collection of elements of type IRun This class cannot be inherited.</summary>
265 </member>
266 <member name="P:MbUnit.Core.Collections.RunCollection.Item(System.Int32)">
267 <summary>Gets or sets the IRun at the given index in this RunCollection.</summary>
268 </member>
269 <member name="M:MbUnit.Core.Collections.RunCollection.Add(MbUnit.Core.Runs.IRun)">
270 <summary>Adds an instance of type IRun to the end of this RunCollection.</summary>
271 <param name="value">The IRun to be added to the end of this RunCollection.</param>
272 </member>
273 <member name="M:MbUnit.Core.Collections.RunCollection.Contains(MbUnit.Core.Runs.IRun)">
274 <summary>Determines whether a specfic IRun value is in this RunCollection.</summary>
275 <param name="value">The IRun value to locate in this RunCollection.</param>
276 <returns>true if value is found in this RunCollection; false otherwise.</returns>
277 </member>
278 <member name="M:MbUnit.Core.Collections.RunCollection.GetEnumerator">
279 <summary>Returns an enumerator that can iterate through the elements of this RunCollection.</summary>
280 <returns>An object that implements System.Collections.IEnumerator.</returns>
281 </member>
282 <member name="M:MbUnit.Core.Collections.RunCollection.Remove(MbUnit.Core.Runs.IRun)">
283 <summary>Removes the first occurrence of a specific IRun from this RunCollection.</summary>
284 <param name="value">The IRun value to remove from this RunCollection.</param>
285 </member>
286 <member name="T:MbUnit.Core.Collections.RunCollection.Enumerator">
287 <summary>Type-specific enumeration class, used by RunCollection.GetEnumerator. This class cannot be inherited.</summary>
288 </member>
289 <member name="T:MbUnit.Core.Collections.RunInvokerCollection">
290 <summary>A collection of elements of type IRunInvoker This class cannot be inherited.</summary>
291 </member>
292 <member name="P:MbUnit.Core.Collections.RunInvokerCollection.Item(System.Int32)">
293 <summary>Gets or sets the IRunInvoker at the given index in this IRunInvokerCollection.</summary>
294 </member>
295 <member name="M:MbUnit.Core.Collections.RunInvokerCollection.Add(MbUnit.Core.Invokers.IRunInvoker)">
296 <summary>Adds an instance of type IRunInvoker to the end of this IRunInvokerCollection.</summary>
297 <param name="value">The IRunInvoker to be added to the end of this IRunInvokerCollection.</param>
298 </member>
299 <member name="M:MbUnit.Core.Collections.RunInvokerCollection.Contains(MbUnit.Core.Invokers.IRunInvoker)">
300 <summary>Determines whether a specfic IRunInvoker value is in this IRunInvokerCollection.</summary>
301 <param name="value">The IRunInvoker value to locate in this IRunInvokerCollection.</param>
302 <returns>true if value is found in this IRunInvokerCollection; false otherwise.</returns>
303 </member>
304 <member name="M:MbUnit.Core.Collections.RunInvokerCollection.GetEnumerator">
305 <summary>Returns an enumerator that can iterate through the elements of this IRunInvokerCollection.</summary>
306 <returns>An object that implements System.Collections.IEnumerator.</returns>
307 </member>
308 <member name="M:MbUnit.Core.Collections.RunInvokerCollection.Remove(MbUnit.Core.Invokers.IRunInvoker)">
309 <summary>Removes the first occurrence of a specific IRunInvoker from this IRunInvokerCollection.</summary>
310 <param name="value">The IRunInvoker value to remove from this IRunInvokerCollection.</param>
311 </member>
312 <member name="T:MbUnit.Core.Collections.RunInvokerCollection.Enumerator">
313 <summary>Type-specific enumeration class, used by IRunInvokerCollection.GetEnumerator. This class cannot be inherited.</summary>
314 </member>
315 <member name="T:MbUnit.Core.Collections.RunInvokerVertexCollection">
316 <summary>A collection of elements of type RunInvokerVertex This class cannot be inherited.</summary>
317 </member>
318 <member name="P:MbUnit.Core.Collections.RunInvokerVertexCollection.Item(System.Int32)">
319 <summary>Gets or sets the RunInvokerVertex at the given index in this RunInvokerVertexCollection.</summary>
320 </member>
321 <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollection.Add(MbUnit.Core.Invokers.RunInvokerVertex)">
322 <summary>Adds an instance of type RunInvokerVertex to the end of this RunInvokerVertexCollection.</summary>
323 <param name="value">The RunInvokerVertex to be added to the end of this RunInvokerVertexCollection.</param>
324 </member>
325 <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollection.Contains(MbUnit.Core.Invokers.RunInvokerVertex)">
326 <summary>Determines whether a specfic RunInvokerVertex value is in this RunInvokerVertexCollection.</summary>
327 <param name="value">The RunInvokerVertex value to locate in this RunInvokerVertexCollection.</param>
328 <returns>true if value is found in this RunInvokerVertexCollection; false otherwise.</returns>
329 </member>
330 <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollection.GetEnumerator">
331 <summary>Returns an enumerator that can iterate through the elements of this RunInvokerVertexCollection.</summary>
332 <returns>An object that implements System.Collections.IEnumerator.</returns>
333 </member>
334 <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollection.Remove(MbUnit.Core.Invokers.RunInvokerVertex)">
335 <summary>Removes the first occurrence of a specific RunInvokerVertex from this RunInvokerVertexCollection.</summary>
336 <param name="value">The RunInvokerVertex value to remove from this RunInvokerVertexCollection.</param>
337 </member>
338 <member name="T:MbUnit.Core.Collections.RunInvokerVertexCollection.Enumerator">
339 <summary>Type-specific enumeration class, used by RunInvokerVertexCollection.GetEnumerator. This class cannot be inherited.</summary>
340 </member>
341 <member name="T:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection">
342 <summary>A collection of elements of type RunInvokerVertexCollection This class cannot be inherited.</summary>
343 </member>
344 <member name="P:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.Item(System.Int32)">
345 <summary>Gets or sets the RunInvokerVertexCollection at the given index in this RunInvokerVertexCollectionCollection.</summary>
346 </member>
347 <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.Add(MbUnit.Core.Collections.RunInvokerVertexCollection)">
348 <summary>Adds an instance of type RunInvokerVertexCollection to the end of this RunInvokerVertexCollectionCollection.</summary>
349 <param name="value">The RunInvokerVertexCollection to be added to the end of this RunInvokerVertexCollectionCollection.</param>
350 </member>
351 <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.Contains(MbUnit.Core.Collections.RunInvokerVertexCollection)">
352 <summary>Determines whether a specfic RunInvokerVertexCollection value is in this RunInvokerVertexCollectionCollection.</summary>
353 <param name="value">The RunInvokerVertexCollection value to locate in this RunInvokerVertexCollectionCollection.</param>
354 <returns>true if value is found in this RunInvokerVertexCollectionCollection; false otherwise.</returns>
355 </member>
356 <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.GetEnumerator">
357 <summary>Returns an enumerator that can iterate through the elements of this RunInvokerVertexCollectionCollection.</summary>
358 <returns>An object that implements System.Collections.IEnumerator.</returns>
359 </member>
360 <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.Remove(MbUnit.Core.Collections.RunInvokerVertexCollection)">
361 <summary>Removes the first occurrence of a specific RunInvokerVertexCollection from this RunInvokerVertexCollectionCollection.</summary>
362 <param name="value">The RunInvokerVertexCollection value to remove from this RunInvokerVertexCollectionCollection.</param>
363 </member>
364 <member name="T:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.Enumerator">
365 <summary>Type-specific enumeration class, used by RunInvokerVertexCollectionCollection.GetEnumerator. This class cannot be inherited.</summary>
366 </member>
367 <member name="T:MbUnit.Core.Collections.RunPipeCollection">
368 <summary>A collection of elements of type RunPipe This class cannot be inherited.</summary>
369 </member>
370 <member name="P:MbUnit.Core.Collections.RunPipeCollection.Item(System.Int32)">
371 <summary>Gets or sets the RunPipe at the given index in this RunPipeCollection.</summary>
372 </member>
373 <member name="M:MbUnit.Core.Collections.RunPipeCollection.Add(MbUnit.Core.RunPipe)">
374 <summary>Adds an instance of type RunPipe to the end of this RunPipeCollection.</summary>
375 <param name="value">The RunPipe to be added to the end of this RunPipeCollection.</param>
376 </member>
377 <member name="M:MbUnit.Core.Collections.RunPipeCollection.Contains(MbUnit.Core.RunPipe)">
378 <summary>Determines whether a specfic RunPipe value is in this RunPipeCollection.</summary>
379 <param name="value">The RunPipe value to locate in this RunPipeCollection.</param>
380 <returns>true if value is found in this RunPipeCollection; false otherwise.</returns>
381 </member>
382 <member name="M:MbUnit.Core.Collections.RunPipeCollection.GetEnumerator">
383 <summary>Returns an enumerator that can iterate through the elements of this RunPipeCollection.</summary>
384 <returns>An object that implements System.Collections.IEnumerator.</returns>
385 </member>
386 <member name="M:MbUnit.Core.Collections.RunPipeCollection.Remove(MbUnit.Core.RunPipe)">
387 <summary>Removes the first occurrence of a specific RunPipe from this RunPipeCollection.</summary>
388 <param name="value">The RunPipe value to remove from this RunPipeCollection.</param>
389 </member>
390 <member name="T:MbUnit.Core.Collections.RunPipeCollection.Enumerator">
391 <summary>Type-specific enumeration class, used by RunPipeCollection.GetEnumerator. This class cannot be inherited.</summary>
392 </member>
393 <member name="T:MbUnit.Core.Collections.RunPipeListenerCollection">
394 <summary>A collection of elements of type IRunPipeListener This class cannot be inherited.</summary>
395 </member>
396 <member name="M:MbUnit.Core.Collections.RunPipeListenerCollection.Add(MbUnit.Core.IRunPipeListener)">
397 <summary>Adds an instance of type IRunPipeListener to the end of this RunPipeListenerCollection.</summary>
398 <param name="value">The IRunPipeListener to be added to the end of this RunPipeListenerCollection.</param>
399 </member>
400 <member name="M:MbUnit.Core.Collections.RunPipeListenerCollection.Contains(MbUnit.Core.IRunPipeListener)">
401 <summary>Determines whether a specfic IRunPipeListener value is in this RunPipeListenerCollection.</summary>
402 <param name="value">The IRunPipeListener value to locate in this RunPipeListenerCollection.</param>
403 <returns>true if value is found in this RunPipeListenerCollection; false otherwise.</returns>
404 </member>
405 <member name="M:MbUnit.Core.Collections.RunPipeListenerCollection.GetEnumerator">
406 <summary>Returns an enumerator that can iterate through the elements of this RunPipeListenerCollection.</summary>
407 <returns>An object that implements System.Collections.IEnumerator.</returns>
408 </member>
409 <member name="M:MbUnit.Core.Collections.RunPipeListenerCollection.Remove(MbUnit.Core.IRunPipeListener)">
410 <summary>Removes the first occurrence of a specific IRunPipeListener from this RunPipeListenerCollection.</summary>
411 <param name="value">The IRunPipeListener value to remove from this RunPipeListenerCollection.</param>
412 </member>
413 <member name="T:MbUnit.Core.Collections.RunPipeListenerCollection.Enumerator">
414 <summary>Type-specific enumeration class, used by RunPipeListenerCollection.GetEnumerator. This class cannot be inherited.</summary>
415 </member>
416 <member name="T:MbUnit.Core.Collections.RunPipeStarterCollection">
417 <summary>A collection of elements of type RunPipeStarter This class cannot be inherited.</summary>
418 </member>
419 <member name="M:MbUnit.Core.Collections.RunPipeStarterCollection.Add(MbUnit.Core.RunPipeStarter)">
420 <summary>Adds an instance of type RunPipeStarter to the end of this RunPipeStarterCollection.</summary>
421 <param name="value">The RunPipeStarter to be added to the end of this RunPipeStarterCollection.</param>
422 </member>
423 <member name="M:MbUnit.Core.Collections.RunPipeStarterCollection.Contains(MbUnit.Core.RunPipeStarter)">
424 <summary>Determines whether a specfic RunPipeStarter value is in this RunPipeStarterCollection.</summary>
425 <param name="value">The RunPipeStarter value to locate in this RunPipeStarterCollection.</param>
426 <returns>true if value is found in this RunPipeStarterCollection; false otherwise.</returns>
427 </member>
428 <member name="M:MbUnit.Core.Collections.RunPipeStarterCollection.GetEnumerator">
429 <summary>Returns an enumerator that can iterate through the elements of this RunPipeStarterCollection.</summary>
430 <returns>An object that implements System.Collections.IEnumerator.</returns>
431 </member>
432 <member name="M:MbUnit.Core.Collections.RunPipeStarterCollection.Remove(MbUnit.Core.RunPipeStarter)">
433 <summary>Removes the first occurrence of a specific RunPipeStarter from this RunPipeStarterCollection.</summary>
434 <param name="value">The RunPipeStarter value to remove from this RunPipeStarterCollection.</param>
435 </member>
436 <member name="T:MbUnit.Core.Collections.RunPipeStarterCollection.Enumerator">
437 <summary>Type-specific enumeration class, used by RunPipeStarterCollection.GetEnumerator. This class cannot be inherited.</summary>
438 </member>
439 <member name="T:MbUnit.Core.Collections.RunVertexDictionary">
440 <summary>A dictionary with keys of type IRun and values of type RunVertex This class cannot be inherited.</summary>
441 </member>
442 <member name="P:MbUnit.Core.Collections.RunVertexDictionary.Item(MbUnit.Core.Runs.IRun)">
443 <summary>Gets or sets the RunVertex associated with the given IRun</summary>
444 <param name="key">The IRun whose value to get or set.</param>
445 </member>
446 <member name="P:MbUnit.Core.Collections.RunVertexDictionary.Keys">
447 <summary>Gets a collection containing the keys in this RunVertexDictionary.</summary>
448 </member>
449 <member name="P:MbUnit.Core.Collections.RunVertexDictionary.Values">
450 <summary>Gets a collection containing the values in this RunVertexDictionary.</summary>
451 </member>
452 <member name="M:MbUnit.Core.Collections.RunVertexDictionary.Add(MbUnit.Core.Runs.IRun,MbUnit.Core.Runs.RunVertex)">
453 <summary>Adds an element with the specified key and value to this RunVertexDictionary.</summary>
454 <param name="key">The IRun key of the element to add.</param>
455 <param name="value">The RunVertex value of the element to add.</param>
456 </member>
457 <member name="M:MbUnit.Core.Collections.RunVertexDictionary.Contains(MbUnit.Core.Runs.IRun)">
458 <summary>Determines whether this RunVertexDictionary contains a specific key.</summary>
459 <param name="key">The IRun key to locate in this RunVertexDictionary.</param>
460 <returns>true if this RunVertexDictionary contains an element with the specified key; otherwise, false.</returns>
461 </member>
462 <member name="M:MbUnit.Core.Collections.RunVertexDictionary.ContainsValue(MbUnit.Core.Runs.RunVertex)">
463 <summary>Determines whether this RunVertexDictionary contains a specific value.</summary>
464 <param name="value">The RunVertex value to locate in this RunVertexDictionary.</param>
465 <returns>true if this RunVertexDictionary contains an element with the specified value; otherwise, false.</returns>
466 </member>
467 <member name="M:MbUnit.Core.Collections.RunVertexDictionary.Remove(MbUnit.Core.Runs.IRun)">
468 <summary>Removes the element with the specified key from this RunVertexDictionary.</summary>
469 <param name="key">The IRun key of the element to remove.</param>
470 </member>
471 <member name="T:MbUnit.Core.Collections.ThreadCollection">
472 <summary>A collection of elements of type Thread This class cannot be inherited.</summary>
473 </member>
474 <member name="P:MbUnit.Core.Collections.ThreadCollection.Item(System.Int32)">
475 <summary>Gets or sets the Thread at the given index in this ThreadCollection.</summary>
476 </member>
477 <member name="M:MbUnit.Core.Collections.ThreadCollection.Add(System.Threading.Thread)">
478 <summary>Adds an instance of type Thread to the end of this ThreadCollection.</summary>
479 <param name="value">The Thread to be added to the end of this ThreadCollection.</param>
480 </member>
481 <member name="M:MbUnit.Core.Collections.ThreadCollection.Contains(System.Threading.Thread)">
482 <summary>Determines whether a specfic Thread value is in this ThreadCollection.</summary>
483 <param name="value">The Thread value to locate in this ThreadCollection.</param>
484 <returns>true if value is found in this ThreadCollection; false otherwise.</returns>
485 </member>
486 <member name="M:MbUnit.Core.Collections.ThreadCollection.GetEnumerator">
487 <summary>Returns an enumerator that can iterate through the elements of this ThreadCollection.</summary>
488 <returns>An object that implements System.Collections.IEnumerator.</returns>
489 </member>
490 <member name="M:MbUnit.Core.Collections.ThreadCollection.Remove(System.Threading.Thread)">
491 <summary>Removes the first occurrence of a specific Thread from this ThreadCollection.</summary>
492 <param name="value">The Thread value to remove from this ThreadCollection.</param>
493 </member>
494 <member name="T:MbUnit.Core.Collections.ThreadCollection.Enumerator">
495 <summary>Type-specific enumeration class, used by ThreadCollection.GetEnumerator. This class cannot be inherited.</summary>
496 </member>
497 <member name="T:MbUnit.Core.Collections.TypeCollection">
498 <summary>A collection of elements of type Type This class cannot be inherited.</summary>
499 </member>
500 <member name="P:MbUnit.Core.Collections.TypeCollection.Item(System.Int32)">
501 <summary>Gets or sets the Type at the given index in this TypeCollection.</summary>
502 </member>
503 <member name="M:MbUnit.Core.Collections.TypeCollection.Add(System.Type)">
504 <summary>Adds an instance of type Type to the end of this TypeCollection.</summary>
505 <param name="value">The Type to be added to the end of this TypeCollection.</param>
506 </member>
507 <member name="M:MbUnit.Core.Collections.TypeCollection.Contains(System.Type)">
508 <summary>Determines whether a specfic Type value is in this TypeCollection.</summary>
509 <param name="value">The Type value to locate in this TypeCollection.</param>
510 <returns>true if value is found in this TypeCollection; false otherwise.</returns>
511 </member>
512 <member name="M:MbUnit.Core.Collections.TypeCollection.GetEnumerator">
513 <summary>Returns an enumerator that can iterate through the elements of this TypeCollection.</summary>
514 <returns>An object that implements System.Collections.IEnumerator.</returns>
515 </member>
516 <member name="M:MbUnit.Core.Collections.TypeCollection.Remove(System.Type)">
517 <summary>Removes the first occurrence of a specific Type from this TypeCollection.</summary>
518 <param name="value">The Type value to remove from this TypeCollection.</param>
519 </member>
520 <member name="T:MbUnit.Core.Collections.TypeCollection.Enumerator">
521 <summary>Type-specific enumeration class, used by TypeCollection.GetEnumerator. This class cannot be inherited.</summary>
522 </member>
523 <member name="T:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute">
524 <summary>Allows control of command line parsing. Attach this attribute to instance fields of types used as the destination of command line argument parsing.</summary>
525 </member>
526 <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.DefaultLongName">
527 <summary>Returns true if the argument did not have an explicit long name specified.</summary>
528 </member>
529 <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.DefaultShortName">
530 <summary>Returns true if the argument did not have an explicit short name specified.</summary>
531 </member>
532 <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.LongName">
533 <summary>The long name of the argument.</summary>
534 </member>
535 <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.ShortName">
536 <summary>The short name of the argument.</summary>
537 </member>
538 <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.Type">
539 <summary>The error checking to be done on the argument.</summary>
540 </member>
541 <member name="T:MbUnit.Core.Cons.CommandLine.CommandLineArgumentParser">
542 <summary>Parser for command line arguments.</summary>
543 </member>
544 <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentParser.Usage">
545 <summary>A user friendly usage string describing the command line argument syntax.</summary>
546 </member>
547 <member name="M:MbUnit.Core.Cons.CommandLine.CommandLineArgumentParser.Parse(System.String[],System.Object)">
548 <summary>Parses an argument list.</summary>
549 <param name="args">The arguments to parse.</param>
550 <param name="destination">The destination of the parsed arguments.</param>
551 <returns>true if no parse errors were encountered.</returns>
552 </member>
553 <member name="T:MbUnit.Core.Cons.CommandLine.CommandLineUtility">
554 <summary>Useful Stuff. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
555 </member>
556 <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineUtility.NewLine">
557 <summary>The System Defined new line string. This field is constant and read-only.</summary>
558 </member>
559 <member name="M:MbUnit.Core.Cons.CommandLine.CommandLineUtility.CommandLineArgumentsUsage(System.Type)">
560 <summary>Returns a Usage string for command line argument parsing. Use CommandLineArgumentAttributes to control parsing behaviour.</summary>
561 <param name="argumentType">The type of the arguments to display usage for.</param>
562 <returns>Printable string containing a user friendly description of command line arguments.</returns>
563 </member>
564 <member name="M:MbUnit.Core.Cons.CommandLine.CommandLineUtility.ParseCommandLineArguments(System.String[],System.Object)">
565 <summary>Parses Command Line Arguments. Errors are output on Console.Error. Use CommandLineArgumentAttributes to control parsing behaviour.</summary>
566 <param name="arguments">The actual arguments.</param>
567 <param name="destination">The resulting parsed arguments.</param>
568 </member>
569 <member name="M:MbUnit.Core.Cons.CommandLine.CommandLineUtility.ParseCommandLineArguments(System.String[],System.Object,MbUnit.Core.Cons.CommandLine.ErrorReporter)">
570 <summary>Parses Command Line Arguments. Use CommandLineArgumentAttributes to control parsing behaviour.</summary>
571 <param name="arguments">The actual arguments.</param>
572 <param name="destination">The resulting parsed arguments.</param>
573 <param name="reporter">The destination for parse errors.</param>
574 </member>
575 <member name="T:MbUnit.Core.Cons.CommandLine.DefaultCommandLineArgumentAttribute">
576 <summary>Indicates that this argument is the default argument. '/' or '-' prefix only the argument value is specified.</summary>
577 </member>
578 <member name="T:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType">
579 <summary>Used to control parsing of command line arguments.</summary>
580 </member>
581 <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.Required">
582 <summary>Indicates that this field is required. An error will be displayed if it is not present when parsing arguments.</summary>
583 </member>
584 <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.Unique">
585 <summary>Only valid in conjunction with Multiple. Duplicate values will result in an error.</summary>
586 </member>
587 <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.Multiple">
588 <summary>Inidicates that the argument may be specified more than once. Only valid if the argument is a collection</summary>
589 </member>
590 <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.AtMostOnce">
591 <summary>The default type for non-collection arguments. The argument is not required, but an error will be reported if it is specified more than once.</summary>
592 </member>
593 <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.LastOccurenceWins">
594 <summary>For non-collection arguments, when the argument is specified more than once no error is reported and the value of the argument is the last value which occurs in the argument list.</summary>
595 </member>
596 <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.MultipleUnique">
597 <summary>The default type for collection arguments. The argument is permitted to occur multiple times, but duplicate values will cause an error to be reported.</summary>
598 </member>
599 <member name="T:MbUnit.Core.Cons.CommandLine.ErrorReporter">
600 <summary>A delegate used in error reporting.</summary>
601 </member>
602 <member name="T:MbUnit.Core.Exceptions.AssertionException">
603 <summary>Base class for MbUnit exceptions</summary>
604 </member>
605 <member name="T:MbUnit.Core.Exceptions.CompilationException">
606 <summary>Exception thrown when not finding a vertex.</summary>
607 </member>
608 <member name="P:MbUnit.Core.Exceptions.CompilationException.Message">
609 <summary>The exception message</summary>
610 </member>
611 <member name="T:MbUnit.Core.Exceptions.IgnoreRunException">
612 <summary>Exception thrown when <see cref="M:MbUnit.Framework.Assert.Ignore(System.String)" /> is called. MbUnit test runner interpret this to mean that the test throwing this exception should be ignored.</summary>
613 </member>
614 <member name="P:MbUnit.Core.Exceptions.IgnoreRunException.Message">
615 <summary>Gets a message that describes why the test is to be ignored.</summary>
616 <value>The message to be displayed by the test runner</value>
617 </member>
618 <member name="T:MbUnit.Core.Exceptions.MissingResourceException">
619 <summary>Exception thrown when a specified resource cannot be found.</summary>
620 </member>
621 <member name="T:MbUnit.Core.Exceptions.MultipleCultureException">
622 <summary>Exception throwed when not finding a vertex.</summary>
623 </member>
624 <member name="T:MbUnit.Core.Filters.CategoryFixtureFilter">
625 <summary>Filter class for FixtureCategory attribute. This class cannot be inherited.</summary>
626 </member>
627 <member name="M:MbUnit.Core.Filters.CategoryFixtureFilter.Filter(System.Type)">
628 <summary>Tests if a fixture has a category attribute matching a pattern.</summary>
629 <param name="fixture">The fixture to test.</param>
630 <returns>true if the fixture has a matching category attribute, otherwise false.</returns>
631 </member>
632 <member name="T:MbUnit.Core.Framework.DecoratorPatternAttribute">
633 <summary>This is the base class for attributes that can decorate tests. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
634 </member>
635 <member name="T:MbUnit.Core.Framework.FixtureDecoratorPatternAttribute">
636 <summary>This is the base class for attributes that can decorate fixtures. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
637 </member>
638 <member name="T:MbUnit.Core.Framework.NonTestPatternAttribute">
639 <summary>Base class for attributes that tag method that are usualy used to set up, provide data, tear down tests, etc...</summary>
640 </member>
641 <member name="T:MbUnit.Core.Framework.PatternAttribute">
642 <summary>Base class for all attributes that are part of the MbUnit framework.</summary>
643 </member>
644 <member name="T:MbUnit.Core.Framework.TestFixturePatternAttribute">
645 <summary>Base class for attributes that define test fixtures. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
646 </member>
647 <member name="P:MbUnit.Core.Framework.TestFixturePatternAttribute.TimeOut">
648 <summary>Gets or sets the fixture timeout in minutes.</summary>
649 <value>Time out minutes.</value>
650 </member>
651 <member name="T:MbUnit.Core.Framework.TestPatternAttribute">
652 <summary>Base class for attributes that define unit test.</summary>
653 </member>
654 <member name="T:MbUnit.Core.Invokers.DecoratorRunInvoker">
655 <summary>Decorator invorkers are used to modify the way a fixute method is executed. Popular examples of such is the <see cref="T:MbUnit.Core.Invokers.ExpectedExceptionRunInvoker" /> or the <see cref="T:MbUnit.Core.Invokers.RepeatRunInvoker" />. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
656 </member>
657 <member name="T:MbUnit.Core.Invokers.ExplicitRunInvoker">
658 <summary>Invoker for tests decorated with the ExplicitAttribute.</summary>
659 </member>
660 <member name="M:MbUnit.Core.Invokers.ExplicitRunInvoker.Execute(System.Object,System.Collections.IList)">
661 <summary>Execute method for the invoker.</summary>
662 <param name="o" />
663 <param name="args" />
664 </member>
665 <member name="T:MbUnit.Core.Invokers.InvokerEventArgs">
666 <summary>TODO - Add class summary</summary>
667 </member>
668 <member name="T:MbUnit.Core.Invokers.MethodRunInvoker">
669 <summary>An invoker that wraps up the call to a fixture method.</summary>
670 </member>
671 <member name="T:MbUnit.Core.Invokers.RunInvokerVertex">
672 <summary>A <see cref="T:QuickGraph.Concepts.IVertex" /> implementation, containing a <see cref="T:MbUnit.Core.Invokers.IRunInvoker" />.</summary>
673 </member>
674 <member name="P:MbUnit.Core.Invokers.RunInvokerVertex.HasInvoker">
675 <summary>Gets a value indicating if the vertex has a <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> instance attached to it.</summary>
676 <value>true if the vertex has a <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> instance attached.</value>
677 </member>
678 <member name="P:MbUnit.Core.Invokers.RunInvokerVertex.Invoker">
679 <summary>Gets the <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> attached to the vertex.</summary>
680 <value>The <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> instance attached to the vertex</value>
681 <exception cref="T:System.InvalidOperationException"> the <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> is a null reference </exception>
682 </member>
683 <member name="M:MbUnit.Core.Invokers.RunInvokerVertex.ReadGraphData(QuickGraph.Concepts.Serialization.IGraphSerializationInfo)">
684 <summary>Not implemented.</summary>
685 <exception cref="T:System.InvalidOperationException">always thrown</exception>
686 </member>
687 <member name="M:MbUnit.Core.Invokers.RunInvokerVertex.ToString">
688 <summary>Converts the object to string</summary>
689 <returns>String representation of the vertex</returns>
690 </member>
691 <member name="M:MbUnit.Core.Invokers.RunInvokerVertex.WriteGraphData(QuickGraph.Concepts.Serialization.IGraphSerializationInfo)">
692 <summary>Serializes informations to the <see cref="T:QuickGraph.Concepts.Serialization.IGraphSerializationInfo" /> instance.</summary>
693 <param name="info">serialization device</param>
694 <exception cref="T:System.ArgumentNullException">info is a null reference</exception>
695 </member>
696 <member name="T:MbUnit.Core.Invokers.RunInvokerVertexProvider">
697 <summary>Internal use This class cannot be inherited.</summary>
698 </member>
699 <member name="T:MbUnit.Core.Invokers.IRunInvoker">
700 <summary>This interface defines a method invoker object.</summary>
701 </member>
702 <member name="P:MbUnit.Core.Invokers.IRunInvoker.Generator">
703 <summary>Gets a reference to the <see cref="T:MbUnit.Core.Runs.IRun" /> instance that generated the invoker.</summary>
704 <value>Reference to the <see cref="T:MbUnit.Core.Runs.IRun" /> instance that generated the invoker.</value>
705 </member>
706 <member name="P:MbUnit.Core.Invokers.IRunInvoker.Name">
707 <summary>Gets a descriptive name of the <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /></summary>
708 <value>A descriptive name of the <see cref="T:MbUnit.Core.Invokers.IRunInvoker" />.</value>
709 </member>
710 <member name="M:MbUnit.Core.Invokers.IRunInvoker.ContainsMemberInfo(System.Reflection.MemberInfo)">
711 <summary>Gets a value indicating if the instance is related to <paramref name="memberInfo" /></summary>
712 <param name="memberInfo">A <see cref="T:System.Reflection.MethodInfo" /> instance</param>
713 <returns>true if the instance is related to the member info; otherwize false</returns>
714 </member>
715 <member name="M:MbUnit.Core.Invokers.IRunInvoker.Execute(System.Object,System.Collections.IList)">
716 <summary>Executes the wrapped method</summary>
717 <param name="o">Test fixture instance</param>
718 <param name="args">Method arguments</param>
719 <returns>Return value of the invoked method. If the method returns void, null is returned.</returns>
720 </member>
721 <member name="T:MbUnit.Core.Monitoring.MemoryStatus">
722 <summary>Describes the status of the memory. This class cannot be inherited.</summary>
723 </member>
724 <member name="T:MbUnit.Core.Monitoring.TimeMonitor">
725 <summary>A high performance timer This class cannot be inherited.</summary>
726 </member>
727 <member name="P:MbUnit.Core.Monitoring.TimeMonitor.Duration">
728 <summary>Gets the timed duration value in seconds</summary>
729 <value>Timer duration</value>
730 </member>
731 <member name="P:MbUnit.Core.Monitoring.TimeMonitor.Now">
732 <summary>Gets the current duration value without stopping the timer</summary>
733 <value>Current duration value</value>
734 </member>
735 <member name="M:MbUnit.Core.Monitoring.TimeMonitor.Start">
736 <summary>Starts the timer</summary>
737 </member>
738 <member name="M:MbUnit.Core.Monitoring.TimeMonitor.Stop">
739 <summary>Stops the timer</summary>
740 </member>
741 <member name="T:MbUnit.Core.Remoting.AssemblyWatcher">
742 <summary>AssemblyWatcher keeps track of one or more assemblies to see if they have changed. It incorporates a delayed notification and uses a standard event to notify any interested parties about the change. The path to the assembly is provided as an argument to the event handler so that one routine can be used to handle events from multiple watchers.</summary>
743 </member>
744 <member name="M:MbUnit.Core.Remoting.CacheFolderHelper.DeleteDir(System.IO.DirectoryInfo)">
745 <summary>Helper method to delete the cache dir. This method deals with a bug that occurs when pdb files are marked read-only.</summary>
746 <param name="cacheDir" />
747 </member>
748 <member name="M:MbUnit.Core.Remoting.ConfigUtils.MergeDependentAssembly(System.Xml.XmlDocument,System.Reflection.AssemblyName,System.String,System.String)">
749 <summary>Merge a 'dependentAssembly' directive into a given config document. If any entries exist for the same assembly they will be deleted before the new entry is merged.</summary>
750 <param name="doc">The config document to merge</param>
751 <param name="assemblyName">The Assembly that should be used</param>
752 <param name="versionRange">The range of compatable versions (eg. "1.0.0.0-3.0.0.0")</param>
753 <param name="codeBase">The codebase to use.</param>
754 </member>
755 <member name="T:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary">
756 <summary>A dictionary with keys of type Guid and values of type TestTreeNode</summary>
757 </member>
758 <member name="P:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Item(System.Guid)">
759 <summary>Gets or sets the TestTreeNode associated with the given Guid</summary>
760 <param name="key">The Guid whose value to get or set.</param>
761 </member>
762 <member name="P:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Keys">
763 <summary>Gets a collection containing the keys in this GuidTestTreeNodeDictionary.</summary>
764 </member>
765 <member name="P:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Values">
766 <summary>Gets a collection containing the values in this GuidTestTreeNodeDictionary.</summary>
767 </member>
768 <member name="M:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Add(MbUnit.Core.Remoting.TestTreeNode)">
769 <summary>Adds an element with the specified key and value to this GuidTestTreeNodeDictionary.</summary>
770 <param name="value">The TestTreeNode value of the element to add.</param>
771 </member>
772 <member name="M:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Contains(System.Guid)">
773 <summary>Determines whether this GuidTestTreeNodeDictionary contains a specific key.</summary>
774 <param name="key">The Guid key to locate in this GuidTestTreeNodeDictionary.</param>
775 <returns>true if this GuidTestTreeNodeDictionary contains an element with the specified key; otherwise, false.</returns>
776 </member>
777 <member name="M:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.ContainsKey(System.Guid)">
778 <summary>Determines whether this GuidTestTreeNodeDictionary contains a specific key.</summary>
779 <param name="key">The Guid key to locate in this GuidTestTreeNodeDictionary.</param>
780 <returns>true if this GuidTestTreeNodeDictionary contains an element with the specified key; otherwise, false.</returns>
781 </member>
782 <member name="M:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Remove(System.Guid)">
783 <summary>Removes the element with the specified key from this GuidTestTreeNodeDictionary.</summary>
784 <param name="key">The Guid key of the element to remove.</param>
785 </member>
786 <member name="T:MbUnit.Core.Remoting.GuidTreeNodeDictionary">
787 <summary>A dictionary with keys of type Guid and values of type TreeNode</summary>
788 </member>
789 <member name="P:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Item(System.Guid)">
790 <summary>Gets or sets the TreeNode associated with the given Guid</summary>
791 <param name="key">The Guid whose value to get or set.</param>
792 </member>
793 <member name="P:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Keys">
794 <summary>Gets a collection containing the keys in this GuidTreeNodeDictionary.</summary>
795 </member>
796 <member name="P:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Values">
797 <summary>Gets a collection containing the values in this GuidTreeNodeDictionary.</summary>
798 </member>
799 <member name="M:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Add(System.Windows.Forms.TreeNode)">
800 <summary>Adds an element with the specified key and value to this GuidTreeNodeDictionary.</summary>
801 <param name="value">The TreeNode value of the element to add.</param>
802 </member>
803 <member name="M:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Contains(System.Guid)">
804 <summary>Determines whether this GuidTreeNodeDictionary contains a specific key.</summary>
805 <param name="key">The Guid key to locate in this GuidTreeNodeDictionary.</param>
806 <returns>true if this GuidTreeNodeDictionary contains an element with the specified key; otherwise, false.</returns>
807 </member>
808 <member name="M:MbUnit.Core.Remoting.GuidTreeNodeDictionary.ContainsKey(System.Guid)">
809 <summary>Determines whether this GuidTreeNodeDictionary contains a specific key.</summary>
810 <param name="key">The Guid key to locate in this GuidTreeNodeDictionary.</param>
811 <returns>true if this GuidTreeNodeDictionary contains an element with the specified key; otherwise, false.</returns>
812 </member>
813 <member name="M:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Remove(System.Guid)">
814 <summary>Removes the element with the specified key from this GuidTreeNodeDictionary.</summary>
815 <param name="key">The Guid key of the element to remove.</param>
816 </member>
817 <member name="T:MbUnit.Core.Remoting.LongLivingMarshalByRefObject">
818 <summary>Long living object. (Extracted from NUnit source)</summary>
819 </member>
820 <member name="M:MbUnit.Core.Remoting.NamespaceTestTreePopulator.Clear">
821 <summary>Clears the internal representation of the tree</summary>
822 </member>
823 <member name="M:MbUnit.Core.Remoting.NamespaceTestTreePopulator.Populate(MbUnit.Core.Remoting.GuidTestTreeNodeDictionary,MbUnit.Core.Remoting.TestTreeNode,MbUnit.Core.Collections.RunPipeStarterCollection)">
824 <summary>Populates the node using the <see cref="T:MbUnit.Core.RunPipe" /> instance contained in <paramref name="pipes" />.</summary>
825 </member>
826 <member name="M:MbUnit.Core.Remoting.RemoteTestEngine.AddConsoleListener">
827 <summary>Supports verbose output option of console app. Added as part of fix to issue MBUNIT-28.</summary>
828 </member>
829 <member name="P:MbUnit.Core.Remoting.SeparateTestDomain.ShadowCopyFiles">
830 <summary>Gets or sets a value indicating the assemblies have to be shadow copied</summary>
831 </member>
832 <member name="M:MbUnit.Core.Remoting.SeparateTestDomain.ConfigureCachePath(System.AppDomainSetup)">
833 <summary>Set the location for caching and delete any old cache info</summary>
834 <param name="setup">Our domain</param>
835 </member>
836 <member name="M:MbUnit.Core.Remoting.SeparateTestDomain.MakeDomain(System.String,System.String,System.String,System.String)">
837 <summary>Creates an AppDomain for the Test Assembly</summary>
838 <param name="domainName" />
839 <param name="appBase" />
840 <param name="configFile" />
841 <param name="binPath" />
842 </member>
843 <member name="T:MbUnit.Core.Remoting.StringTestTreeNodeDictionary">
844 <summary>A dictionary with keys of type String and values of type TestTreeNode</summary>
845 </member>
846 <member name="P:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Item(System.String)">
847 <summary>Gets or sets the TestTreeNode associated with the given String</summary>
848 <param name="key">The String whose value to get or set.</param>
849 </member>
850 <member name="P:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Keys">
851 <summary>Gets a collection containing the keys in this StringTestTreeNodeDictionary.</summary>
852 </member>
853 <member name="P:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Values">
854 <summary>Gets a collection containing the values in this StringTestTreeNodeDictionary.</summary>
855 </member>
856 <member name="M:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Add(System.String,MbUnit.Core.Remoting.TestTreeNode)">
857 <summary>Adds an element with the specified key and value to this StringTestTreeNodeDictionary.</summary>
858 <param name="key">The String key of the element to add.</param>
859 <param name="value">The TestTreeNode value of the element to add.</param>
860 </member>
861 <member name="M:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Contains(System.String)">
862 <summary>Determines whether this StringTestTreeNodeDictionary contains a specific key.</summary>
863 <param name="key">The String key to locate in this StringTestTreeNodeDictionary.</param>
864 <returns>true if this StringTestTreeNodeDictionary contains an element with the specified key; otherwise, false.</returns>
865 </member>
866 <member name="M:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Remove(System.String)">
867 <summary>Removes the element with the specified key from this StringTestTreeNodeDictionary.</summary>
868 <param name="key">The String key of the element to remove.</param>
869 </member>
870 <member name="P:MbUnit.Core.Remoting.TestDomain.TestFilePath">
871 <summary>Gets the testFilePath</summary>
872 </member>
873 <member name="P:MbUnit.Core.Remoting.TestDomainBase.Identifier">
874 <summary>Gets a <see cref="T:System.Guid" /> identifying the <see cref="T:MbUnit.Core.Remoting.TestDomain" /></summary>
875 </member>
876 <member name="M:MbUnit.Core.Remoting.TestDomainBase.Load">
877 <summary>Loads domain and test assembly</summary>
878 </member>
879 <member name="M:MbUnit.Core.Remoting.TestDomainBase.OnLoaded">
880 <summary>Raises the <see cref="E:MbUnit.Core.Remoting.TestDomainBase.Loaded" /> event.</summary>
881 </member>
882 <member name="M:MbUnit.Core.Remoting.TestDomainBase.OnReLoaded">
883 <summary>Raises the <see cref="E:MbUnit.Core.Remoting.TestDomainBase.ReLoaded" /> event.</summary>
884 </member>
885 <member name="M:MbUnit.Core.Remoting.TestDomainBase.OnUnLoaded">
886 <summary>Raises the <see cref="E:MbUnit.Core.Remoting.TestDomainBase.UnLoaded" /> event.</summary>
887 </member>
888 <member name="M:MbUnit.Core.Remoting.TestDomainBase.Reload">
889 <summary>Unload and reload test domain</summary>
890 </member>
891 <member name="M:MbUnit.Core.Remoting.TestDomainBase.Unload">
892 <summary>Unload domain</summary>
893 </member>
894 <member name="T:MbUnit.Core.Remoting.TestTreeNodeCollection">
895 <summary>A collection of elements of type TestTreeNode</summary>
896 </member>
897 <member name="M:MbUnit.Core.Remoting.TestTreeNodeCollection.Add(MbUnit.Core.Remoting.TestTreeNode)">
898 <summary>Adds an instance of type TestTreeNode to the end of this TestTreeNodeCollection.</summary>
899 <param name="value">The TestTreeNode to be added to the end of this TestTreeNodeCollection.</param>
900 </member>
901 <member name="M:MbUnit.Core.Remoting.TestTreeNodeCollection.Contains(MbUnit.Core.Remoting.TestTreeNode)">
902 <summary>Determines whether a specfic TestTreeNode value is in this TestTreeNodeCollection.</summary>
903 <param name="value">The TestTreeNode value to locate in this TestTreeNodeCollection.</param>
904 <returns>true if value is found in this TestTreeNodeCollection; false otherwise.</returns>
905 </member>
906 <member name="M:MbUnit.Core.Remoting.TestTreeNodeCollection.GetEnumerator">
907 <summary>Returns an enumerator that can iterate through the elements of this TestTreeNodeCollection.</summary>
908 <returns>An object that implements System.Collections.IEnumerator.</returns>
909 </member>
910 <member name="M:MbUnit.Core.Remoting.TestTreeNodeCollection.Remove(MbUnit.Core.Remoting.TestTreeNode)">
911 <summary>Removes the first occurrence of a specific TestTreeNode from this TestTreeNodeCollection.</summary>
912 <param name="value">The TestTreeNode value to remove from this TestTreeNodeCollection.</param>
913 </member>
914 <member name="T:MbUnit.Core.Remoting.TestTreeNodeCollection.Enumerator">
915 <summary>Type-specific enumeration class, used by TestTreeNodeCollection.GetEnumerator.</summary>
916 </member>
917 <member name="T:MbUnit.Core.Remoting.TestTreePopulator">
918 <summary>Defines a class that can populate a tree of tests This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
919 </member>
920 <member name="M:MbUnit.Core.Remoting.TestTreePopulator.Clear">
921 <summary>Clears the internal representation of the tree</summary>
922 </member>
923 <member name="M:MbUnit.Core.Remoting.TestTreePopulator.Populate(MbUnit.Core.Remoting.GuidTestTreeNodeDictionary,MbUnit.Core.Remoting.TestTreeNode,MbUnit.Core.Collections.RunPipeStarterCollection)">
924 <summary>Populates the node using the <see cref="T:MbUnit.Core.RunPipe" /> instance contained in <paramref name="pipes" />.</summary>
925 <param name="nodes">Node dictionary.</param>
926 <param name="root">The root node.</param>
927 <param name="pipes">Collection of <see cref="T:MbUnit.Core.RunPipeStarter" />s</param>
928 <exception cref="T:System.ArgumentNullException">
929 <paramref name="root" /> or <paramref name="pipes" /> is a null reference (Nothing in Visual Basic) </exception>
930 </member>
931 <member name="T:MbUnit.Core.Remoting.TestTreePopulatorCollection">
932 <summary>A collection of elements of type TestTreePopulator</summary>
933 </member>
934 <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.Add(MbUnit.Core.Remoting.ITestTreePopulator)">
935 <summary>Adds an instance of type TestTreePopulator to the end of this TestTreePopulatorCollection.</summary>
936 <param name="value">The TestTreePopulator to be added to the end of this TestTreePopulatorCollection.</param>
937 </member>
938 <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.AddRange(MbUnit.Core.Remoting.ITestTreePopulator[])">
939 <summary>Adds the elements of an array to the end of this TestTreePopulatorCollection.</summary>
940 <param name="items">The array whose elements are to be added to the end of this TestTreePopulatorCollection.</param>
941 </member>
942 <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.AddRange(MbUnit.Core.Remoting.TestTreePopulatorCollection)">
943 <summary>Adds the elements of another TestTreePopulatorCollection to the end of this TestTreePopulatorCollection.</summary>
944 <param name="items">The TestTreePopulatorCollection whose elements are to be added to the end of this TestTreePopulatorCollection.</param>
945 </member>
946 <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.Contains(MbUnit.Core.Remoting.ITestTreePopulator)">
947 <summary>Determines whether a specfic TestTreePopulator value is in this TestTreePopulatorCollection.</summary>
948 <param name="value">The TestTreePopulator value to locate in this TestTreePopulatorCollection.</param>
949 <returns>true if value is found in this TestTreePopulatorCollection; false otherwise.</returns>
950 </member>
951 <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.GetEnumerator">
952 <summary>Returns an enumerator that can iterate through the elements of this TestTreePopulatorCollection.</summary>
953 <returns>An object that implements System.Collections.IEnumerator.</returns>
954 </member>
955 <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.Remove(MbUnit.Core.Remoting.ITestTreePopulator)">
956 <summary>Removes the first occurrence of a specific TestTreePopulator from this TestTreePopulatorCollection.</summary>
957 <param name="value">The TestTreePopulator value to remove from this TestTreePopulatorCollection.</param>
958 </member>
959 <member name="T:MbUnit.Core.Remoting.TestTreePopulatorCollection.Enumerator">
960 <summary>Type-specific enumeration class, used by TestTreePopulatorCollection.GetEnumerator.</summary>
961 </member>
962 <member name="P:MbUnit.Core.Remoting.TreeTestDomainCollection.Watcher">
963 <summary>Gets the assembly watcher</summary>
964 </member>
965 <member name="T:MbUnit.Core.Remoting.ITestTreePopulator">
966 <summary>Defines a class that can populate a tree of tests</summary>
967 </member>
968 <member name="M:MbUnit.Core.Remoting.ITestTreePopulator.Clear">
969 <summary>Clears the internal representation of the tree</summary>
970 </member>
971 <member name="M:MbUnit.Core.Remoting.ITestTreePopulator.Populate(MbUnit.Core.Remoting.GuidTestTreeNodeDictionary,MbUnit.Core.Remoting.TestTreeNode,MbUnit.Core.Collections.RunPipeStarterCollection)">
972 <summary>Populates the node using the <see cref="T:MbUnit.Core.RunPipe" /> instance contained in <paramref name="pipes" />.</summary>
973 <param name="nodes">A node dictionary.</param>
974 <param name="root">The root node.</param>
975 <param name="pipes">A collection of pipes.</param>
976 <exception cref="T:System.ArgumentNullException">
977 <paramref name="root" /> or <paramref name="pipes" /> is a null reference (Nothing in Visual Basic) </exception>
978 </member>
979 <member name="M:MbUnit.Core.Reports.ReportBase.Render(MbUnit.Core.Reports.Serialization.ReportResult,System.IO.TextWriter)">
980 <summary>Render the report result to the specified writer</summary>
981 <param name="result">Result from the test</param>
982 <param name="writer">Writer to write result output to</param>
983 </member>
984 <member name="M:MbUnit.Core.Reports.ReportBase.Render(MbUnit.Core.Reports.Serialization.ReportResult,System.String)">
985 <summary>Render the report result to a file</summary>
986 <param name="result">Result from the test</param>
987 <param name="fileName">Report output file name</param>
988 </member>
989 <member name="M:MbUnit.Core.Reports.ReportBase.Render(MbUnit.Core.Reports.Serialization.ReportResult,System.String,System.String,System.String)">
990 <summary>Render the report result to a file</summary>
991 <param name="result">Result from the test</param>
992 <param name="outputPath">Output directory</param>
993 <param name="nameFormat">Default format name</param>
994 <param name="extension">Extension of the file</param>
995 <returns>File name of the report</returns>
996 </member>
997 <member name="M:MbUnit.Core.Reports.ReportBase.Render(MbUnit.Core.Reports.Serialization.ReportResult,System.String,System.String)">
998 <summary>Render the report result to a file</summary>
999 <param name="result">Result from the test</param>
1000 <param name="outputPath">Output directory</param>
1001 <param name="nameFormat">Default format name. If null, the default name will be used</param>
1002 <returns>File name of the report</returns>
1003 </member>
1004 <member name="T:MbUnit.Core.Reports.TextReport">
1005 <summary>Reports MbUnit result in text format. This class cannot be inherited.</summary>
1006 </member>
1007 <member name="T:MbUnit.Core.Reports.XmlReport">
1008 <summary>XML Report. This class cannot be inherited.</summary>
1009 </member>
1010 <member name="T:MbUnit.Core.Runs.CustomRun">
1011 <summary>TODO - Add class summary</summary>
1012 </member>
1013 <member name="P:MbUnit.Core.Runs.IndexerProviderRun.IsTest">
1014 <summary>Gets a value indicating the run is considered as a test or not.</summary>
1015 <value>true if the <see cref="T:MbUnit.Core.Runs.IRun" /> instance is a test</value>
1016 </member>
1017 <member name="P:MbUnit.Core.Runs.IndexerProviderRun.Name">
1018 <summary>Gets a descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun" /></summary>
1019 <value>A descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun" /></value>
1020 </member>
1021 <member name="M:MbUnit.Core.Runs.IndexerProviderRun.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
1022 <summary>Populates the <see cref="T:MbUnit.Core.Invokers.RunInvokerTree" /> invoker graph with <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> generated by the run.</summary>
1023 <param name="tree">Invoker tree</param>
1024 <param name="parent">parent vertex</param>
1025 <param name="t">class type that is marked by the run</param>
1026 </member>
1027 <member name="T:MbUnit.Core.Runs.ParallelRun">
1028 <summary>TODO - Add class summary This class cannot be inherited.</summary>
1029 </member>
1030 <member name="P:MbUnit.Core.Runs.Run.IsTest">
1031 <summary>Gets a value indicating the run is considered as a test or not.</summary>
1032 <value>true if the <see cref="T:MbUnit.Core.Runs.IRun" /> instance is a test</value>
1033 </member>
1034 <member name="P:MbUnit.Core.Runs.Run.Name">
1035 <summary>Gets a descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun" /></summary>
1036 <value>A descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun" /></value>
1037 </member>
1038 <member name="M:MbUnit.Core.Runs.Run.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
1039 <summary>Populates the <see cref="T:MbUnit.Core.Invokers.RunInvokerTree" /> invoker graph with <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> generated by the run.</summary>
1040 <param name="tree">Invoker tree</param>
1041 <param name="parent">parent vertex</param>
1042 <param name="t">class type that is marked by the run</param>
1043 </member>
1044 <member name="T:MbUnit.Core.Runs.SequenceRun">
1045 <summary>A sequence of IRuns This class cannot be inherited.</summary>
1046 </member>
1047 <member name="M:MbUnit.Core.Runs.SequenceRun.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
1048 <summary>Populates the <see cref="T:MbUnit.Core.Invokers.RunInvokerTree" /> invoker graph with <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> generated by the run.</summary>
1049 <param name="tree">Invoker tree.</param>
1050 <param name="parent">Parent vertex.</param>
1051 <param name="t">The <see cref="T:System.Type" /> to search for.</param>
1052 </member>
1053 <member name="T:MbUnit.Core.Runs.TestFixtureRun">
1054 <summary>Test fixture run with support for decoration by <see cref="T:MbUnit.Framework.TestFixtureExtensionAttribute" />. This class cannot be inherited.</summary>
1055 </member>
1056 <member name="M:MbUnit.Core.Runs.TestFixtureRun.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
1057 <summary>Builds the test run invoker tree.</summary>
1058 <param name="tree" />
1059 <param name="parent" />
1060 <param name="t" />
1061 </member>
1062 <member name="T:MbUnit.Core.Runs.IRun">
1063 <summary>This interface defines a type of test/non test run that is used to define the <see cref="T:MbUnit.Core.Framework.TestFixturePatternAttribute" /> logic.</summary>
1064 </member>
1065 <member name="P:MbUnit.Core.Runs.IRun.IsTest">
1066 <summary>Gets a value indicating the run is considered as a test or not.</summary>
1067 <value>true if the <see cref="T:MbUnit.Core.Runs.IRun" /> instance is a test</value>
1068 </member>
1069 <member name="P:MbUnit.Core.Runs.IRun.Name">
1070 <summary>Gets a descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun" /></summary>
1071 <value>A descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun" /></value>
1072 </member>
1073 <member name="M:MbUnit.Core.Runs.IRun.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
1074 <summary>Populates the <see cref="T:MbUnit.Core.Invokers.RunInvokerTree" /> invoker graph with <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> generated by the run.</summary>
1075 <param name="tree">Invoker tree</param>
1076 <param name="parent">parent vertex</param>
1077 <param name="t">class type that is marked by the run</param>
1078 </member>
1079 <member name="T:MbUnit.Framework.ArrayAssert">
1080 <summary>Array Assertion class This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
1081 </member>
1082 <member name="M:MbUnit.Framework.ArrayAssert.AreEqual(System.Boolean[],System.Boolean[])">
1083 <summary>Verifies that both boolean arrays have the same dimension and elements.</summary>
1084 <param name="expected" />
1085 <param name="actual" />
1086 </member>
1087 <member name="M:MbUnit.Framework.ArrayAssert.AreEqual(System.Char[],System.Char[])">
1088 <summary>Verifies that both char arrays have the same dimension and elements.</summary>
1089 <param name="expected" />
1090 <param name="actual" />
1091 </member>
1092 <member name="M:MbUnit.Framework.ArrayAssert.AreEqual(System.Byte[],System.Byte[])">
1093 <summary>Verifies that both byte arrays have the same dimension and elements.</summary>
1094 <param name="expected" />
1095 <param name="actual" />
1096 </member>
1097 <member name="M:MbUnit.Framework.ArrayAssert.AreEqual(System.Int32[],System.Int32[])">
1098 <summary>Verifies that both integer arrays have the same dimension and elements.</summary>
1099 <param name="expected" />
1100 <param name="actual" />
1101 </member>
1102 <member name="M:MbUnit.Framework.ArrayAssert.AreEqual(System.Int64[],System.Int64[])">
1103 <summary>Verifies that both arrays of long integers have the same dimension and elements.</summary>
1104 <param name="expected" />
1105 <param name="actual" />
1106 </member>
1107 <member name="M:MbUnit.Framework.ArrayAssert.AreEqual(System.Single[],System.Single[],System.Single)">
1108 <summary>Verifies that both arrays of single-point floating numbers have the same dimension and elements given a margin of error.</summary>
1109 <param name="expected" />
1110 <param name="actual" />
1111 <param name="delta" />
1112 </member>
1113 <member name="M:MbUnit.Framework.ArrayAssert.AreEqual(System.Double[],System.Double[],System.Double)">
1114 <summary>Verifies that both arrays of double-point floating numbers have the same dimension and elements given a margin of error.</summary>
1115 <param name="expected" />
1116 <param name="actual" />
1117 <param name="delta" />
1118 </member>
1119 <member name="M:MbUnit.Framework.ArrayAssert.AreEqual(System.Object[],System.Object[])">
1120 <summary>Verifies that both arrays of objects have the same dimension and elements.</summary>
1121 <param name="expected" />
1122 <param name="actual" />
1123 </member>
1124 <member name="T:MbUnit.Framework.AssemblyCleanupAttribute">
1125 <summary>Use this attribute to identify the class containing setup and teardown methods for an assembly of tests. The setup method will be run before any other tests or setup methods in the assembly and the teardown method will be run after any other teardown methods in the assembly. This class cannot be inherited.</summary>
1126 </member>
1127 <member name="P:MbUnit.Framework.AssemblyCleanupAttribute.TargetType">
1128 <summary>Identifies the class containing the setup and teardown methods for the test assembly</summary>
1129 </member>
1130 <member name="T:MbUnit.Framework.AssemblyDependsOnAttribute">
1131 <summary>Use this attribute to identify an assembly whose tests must execute successfully before the tests in this assembly are executed This class cannot be inherited.</summary>
1132 </member>
1133 <member name="P:MbUnit.Framework.AssemblyDependsOnAttribute.AssemblyName">
1134 <summary>The name of the parent assembly</summary>
1135 </member>
1136 <member name="T:MbUnit.Framework.AssemblyResolverAttribute">
1137 <summary>Registers a custom assembly resolver. This class cannot be inherited.</summary>
1138 </member>
1139 <member name="P:MbUnit.Framework.AssemblyResolverAttribute.AssemblyResolverType">
1140 <summary>Gets the assembly resolver type.</summary>
1141 </member>
1142 <member name="T:MbUnit.Framework.Assert">
1143 <summary>Class containing generic assert methods for the comparison of values and object references, the existence of objects within a collection type and basic object properties - for example, whether or not it is assignable to. Also contains a set of Fail asserts which will automatically fail a test straight away. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
1144 </member>
1145 <member name="P:MbUnit.Framework.Assert.AssertCount">
1146 <summary>Number of Asserts made so far this test run</summary>
1147 </member>
1148 <member name="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)">
1149 <summary>Verifies that two doubles, <paramref name="expected" /> and <paramref name="actual" />, are equal given a <paramref name="delta" />. If the expected value is infinity then the delta value is ignored. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1150 <param name="expected">The expected value</param>
1151 <param name="actual">The actual value</param>
1152 <param name="delta">The maximum acceptable difference between <paramref name="expected" /> and <paramref name="actual" /></param>
1153 <param name="message">The message printed out upon failure</param>
1154 <exception cref="T:System.ArgumentException">Thrown if <paramref name="delta" /> has been given a negative value.</exception>
1155 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not values within the given <paramref name="delta" />.</exception>
1156 </member>
1157 <member name="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double)">
1158 <summary>Verifies that two doubles, <paramref name="expected" /> and <paramref name="actual" />, are equal considering a <paramref name="delta" />. If the expected value is infinity then the delta value is ignored. If they are not equals then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with no explanation for the failure. Use <see cref="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)" /> if you want to provide an explanation.</summary>
1159 <param name="expected">The expected value</param>
1160 <param name="actual">The actual value</param>
1161 <param name="delta">The maximum acceptable difference between <paramref name="expected" /> and <paramref name="actual" /></param>
1162 <exception cref="T:System.ArgumentException">Thrown if <paramref name="delta" /> has been given a negative value.</exception>
1163 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not values within the given <paramref name="delta" />.</exception>
1164 </member>
1165 <member name="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])">
1166 <summary>Verifies that two doubles, <paramref name="expected" /> and <paramref name="actual" />, are equal considering a <paramref name="delta" />. If the expected value is infinity then the delta value is ignored. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1167 <param name="expected">The expected value</param>
1168 <param name="actual">The actual value</param>
1169 <param name="delta">The maximum acceptable difference between <paramref name="expected" /> and <paramref name="actual" /></param>
1170 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1171 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1172 <exception cref="T:System.ArgumentException">Thrown if <paramref name="delta" /> has been given a negative value.</exception>
1173 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not values within the given <paramref name="delta" />. Exception message is generated through <paramref name="format" /> and <paramref name="args" />.</exception>
1174 </member>
1175 <member name="M:MbUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single,System.String)">
1176 <summary>Verifies that two floats, <paramref name="expected" /> and <paramref name="actual" />, are equal considering a <paramref name="delta" />. If the <paramref name="expected" /> value is infinity then the <paramref name="delta" /> value is ignored. If they are not equal then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1177 <param name="expected">The expected value</param>
1178 <param name="actual">The actual value</param>
1179 <param name="delta">The maximum acceptable difference between <paramref name="expected" /> and <paramref name="actual" /></param>
1180 <param name="message">The message printed out upon failure</param>
1181 <exception cref="T:System.ArgumentException">Thrown if <paramref name="delta" /> has been given a negative value.</exception>
1182 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not values within the given <paramref name="delta" />.</exception>
1183 </member>
1184 <member name="M:MbUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single,System.String,System.Object[])">
1185 <summary>Verifies that two floats, <paramref name="expected" /> and <paramref name="actual" />, are equal considering a <paramref name="delta" />. If the <paramref name="expected" /> value is infinity then the <paramref name="delta" /> value is ignored. If they are not equals then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1186 <param name="expected">The expected value</param>
1187 <param name="actual">The actual value</param>
1188 <param name="delta">The maximum acceptable difference between <paramref name="expected" /> and <paramref name="actual" /></param>
1189 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1190 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1191 <exception cref="T:System.ArgumentException">Thrown if <paramref name="delta" /> has been given a negative value.</exception>
1192 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not values within the given <paramref name="delta" />. Exception message is generated through <paramref name="format" /> and <paramref name="args" />.</exception>
1193 </member>
1194 <member name="M:MbUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single)">
1195 <summary>Verifies that two floats, <paramref name="expected" /> and <paramref name="actual" />, are equal considering a <paramref name="delta" />. If the <paramref name="expected" /> value is infinity then the <paramref name="delta" /> value is ignored. If they are not equals then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown.</summary>
1196 <param name="expected">The expected value</param>
1197 <param name="actual">The actual value</param>
1198 <param name="delta">The maximum acceptable difference between <paramref name="expected" /> and <paramref name="actual" /></param>
1199 <exception cref="T:System.ArgumentException">Thrown if <paramref name="delta" /> has been given a negative value.</exception>
1200 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not values within the given <paramref name="delta" />.</exception>
1201 </member>
1202 <member name="M:MbUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String)">
1203 <summary>Verifies that two decimals, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1204 <param name="expected">The expected value</param>
1205 <param name="actual">The actual value</param>
1206 <param name="message">The message printed out upon failure</param>
1207 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">
1208 <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
1209 </member>
1210 <member name="M:MbUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
1211 <summary>Verifies that two decimals, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1212 <param name="expected">The expected value</param>
1213 <param name="actual">The actual value</param>
1214 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1215 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1216 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
1217 </member>
1218 <member name="M:MbUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal)">
1219 <summary>Verifies that two decimals, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown.</summary>
1220 <param name="expected">The expected value</param>
1221 <param name="actual">The actual value</param>
1222 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
1223 </member>
1224 <member name="M:MbUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String)">
1225 <summary>Verifies that two integers, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1226 <param name="expected">The expected value</param>
1227 <param name="actual">The actual value</param>
1228 <param name="message">The message printed out upon failure</param>
1229 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
1230 </member>
1231 <member name="M:MbUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String,System.Object[])">
1232 <summary>Verifies that two integers, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1233 <param name="expected">The expected value</param>
1234 <param name="actual">The actual value</param>
1235 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1236 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1237 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
1238 </member>
1239 <member name="M:MbUnit.Framework.Assert.AreEqual(System.Int32,System.Int32)">
1240 <summary>Verifies that two integers, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown.</summary>
1241 <param name="expected">The expected value</param>
1242 <param name="actual">The actual value</param>
1243 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
1244 </member>
1245 <member name="M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String,System.Object[])">
1246 <summary>Verifies that two objects, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1247 <param name="expected">The expected value</param>
1248 <param name="actual">The actual value</param>
1249 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1250 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1251 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException"> Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
1252 </member>
1253 <member name="M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String)">
1254 <summary>Verifies that two objects, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with a given <paramref name="message" />.</summary>
1255 <param name="expected">The expected value</param>
1256 <param name="actual">The actual value</param>
1257 <param name="message">The message printed out upon failure</param>
1258 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
1259 </member>
1260 <member name="M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object)">
1261 <summary>Verifies that two objects, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown.</summary>
1262 <param name="expected">The expected value</param>
1263 <param name="actual">The actual value</param>
1264 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">
1265 <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
1266 </member>
1267 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String,System.Object[])">
1268 <summary>Verifies that two <see cref="T:System.Object" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Object" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1269 <param name="expected">The <see cref="T:System.Object" /> to compare</param>
1270 <param name="actual">The <see cref="T:System.Object" /> being compared</param>
1271 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1272 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1273 </member>
1274 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String)">
1275 <summary>Verifies that two <see cref="T:System.Object" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Object" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
1276 <param name="expected">The <see cref="T:System.Object" /> to compare</param>
1277 <param name="actual">The <see cref="T:System.Object" /> being compared</param>
1278 <param name="message">The message to include if the test fails</param>
1279 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1280 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are both null</exception>
1281 </member>
1282 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Object,System.Object)">
1283 <summary>Verifies that two <see cref="T:System.Object" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Object" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1284 <param name="expected">The <see cref="T:System.Object" /> to compare</param>
1285 <param name="actual">The <see cref="T:System.Object" /> being compared</param>
1286 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1287 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are both null</exception>
1288 </member>
1289 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String,System.Object[])">
1290 <summary>Verifies that two integers, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the integers are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1291 <param name="expected">The integer to compare</param>
1292 <param name="actual">The integer being compared</param>
1293 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1294 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1295 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1296 </member>
1297 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String)">
1298 <summary>Verifies that two integers, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the integers are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a given <paramref name="message" />.</summary>
1299 <param name="expected">The integer to compare</param>
1300 <param name="actual">The integer being compared</param>
1301 <param name="message">The message to include if the test fails</param>
1302 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1303 </member>
1304 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32)">
1305 <summary>Verifies that two integers, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the integers are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown</summary>
1306 <param name="expected">The integer to compare</param>
1307 <param name="actual">The integer being compared</param>
1308 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1309 </member>
1310 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
1311 <summary>Verifies that two <see cref="T:System.UInt32" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.UInt32" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1312 <param name="expected">The <see cref="T:System.UInt32" /> to compare</param>
1313 <param name="actual">The <see cref="T:System.UInt32" /> being compared</param>
1314 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1315 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1316 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1317 </member>
1318 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String)">
1319 <summary>Verifies that two <see cref="T:System.UInt32" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.UInt32" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
1320 <param name="expected">The <see cref="T:System.UInt32" /> to compare</param>
1321 <param name="actual">The <see cref="T:System.UInt32" /> being compared</param>
1322 <param name="message">The message to include if the test fails</param>
1323 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1324 </member>
1325 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32)">
1326 <summary>Verifies that two <see cref="T:System.UInt32" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.UInt32" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1327 <param name="expected">The <see cref="T:System.UInt32" /> to compare</param>
1328 <param name="actual">The <see cref="T:System.UInt32" /> being compared</param>
1329 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1330 </member>
1331 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
1332 <summary>Verifies that two <see cref="T:System.Decimal" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Decimal" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1333 <param name="expected">The <see cref="T:System.Decimal" /> to compare</param>
1334 <param name="actual">The <see cref="T:System.Decimal" /> being compared</param>
1335 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1336 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1337 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1338 </member>
1339 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String)">
1340 <summary>Verifies that two <see cref="T:System.Decimal" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Decimal" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
1341 <param name="expected">The <see cref="T:System.Decimal" /> to compare</param>
1342 <param name="actual">The <see cref="T:System.Decimal" /> being compared</param>
1343 <param name="message">The message to include if the test fails</param>
1344 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1345 </member>
1346 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal)">
1347 <summary>Verifies that two <see cref="T:System.Decimal" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Decimal" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown</summary>
1348 <param name="expected">The <see cref="T:System.Decimal" /> to compare</param>
1349 <param name="actual">The <see cref="T:System.Decimal" /> being compared</param>
1350 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1351 </member>
1352 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String,System.Object[])">
1353 <summary>Verifies that two <see cref="T:System.Single" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Single" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1354 <param name="expected">The <see cref="T:System.Single" /> to compare</param>
1355 <param name="actual">The <see cref="T:System.Single" /> being compared</param>
1356 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1357 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1358 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1359 </member>
1360 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String)">
1361 <summary>Verifies that two <see cref="T:System.Single" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Single" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
1362 <param name="expected">The <see cref="T:System.Single" /> to compare</param>
1363 <param name="actual">The <see cref="T:System.Single" /> being compared</param>
1364 <param name="message">The message to include if the test fails</param>
1365 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1366 </member>
1367 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Single,System.Single)">
1368 <summary>Verifies that two <see cref="T:System.Single" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Single" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown</summary>
1369 <param name="expected">The <see cref="T:System.Single" /> to compare</param>
1370 <param name="actual">The <see cref="T:System.Single" /> being compared</param>
1371 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1372 </member>
1373 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String,System.Object[])">
1374 <summary>Verifies that two <see cref="T:System.Double" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Double" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1375 <param name="expected">The <see cref="T:System.Double" /> to compare</param>
1376 <param name="actual">The <see cref="T:System.Double" /> being compared</param>
1377 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1378 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1379 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1380 </member>
1381 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String)">
1382 <summary>Verifies that two <see cref="T:System.Double" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Double" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
1383 <param name="expected">The <see cref="T:System.Double" /> to compare</param>
1384 <param name="actual">The <see cref="T:System.Double" /> being compared</param>
1385 <param name="message">The message to include if the test fails</param>
1386 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1387 </member>
1388 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Double,System.Double)">
1389 <summary>Verifies that two <see cref="T:System.Double" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Double" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown</summary>
1390 <param name="expected">The <see cref="T:System.Double" /> to compare</param>
1391 <param name="actual">The <see cref="T:System.Double" /> being compared</param>
1392 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1393 </member>
1394 <member name="M:MbUnit.Framework.Assert.AreNotSame(System.Object,System.Object)">
1395 <summary>Verifies that two <see cref="T:System.Object" />s, <paramref name="expected" /> and <paramref name="actual" />, are not the same object. That is, the two variables do not reference the same <see cref="T:System.Object" nolink="true" />. If the <see cref="T:System.Object" nolink="true" />s are the same, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1396 <param name="expected">The <see cref="T:System.Object" /> to compare</param>
1397 <param name="actual">The <see cref="T:System.Object" /> being compared</param>
1398 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are references to the same <see cref="T:System.Object" />.</exception>
1399 </member>
1400 <member name="M:MbUnit.Framework.Assert.AreNotSame(System.Object,System.Object,System.String)">
1401 <summary>Verifies that two <see cref="T:System.Object" />s, <paramref name="expected" /> and <paramref name="actual" />, are not the same object. That is, the two variables do not reference the same <see cref="T:System.Object" nolink="true" />. If the <see cref="T:System.Object" nolink="true" />s are the same, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
1402 <param name="expected">The <see cref="T:System.Object" /> to compare</param>
1403 <param name="actual">The <see cref="T:System.Object" /> being compared</param>
1404 <param name="message">The message to include if the test fails</param>
1405 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are references to the same <see cref="T:System.Object" />.</exception>
1406 </member>
1407 <member name="M:MbUnit.Framework.Assert.AreNotSame(System.Object,System.Object,System.String,System.Object[])">
1408 <summary>Verifies that two <see cref="T:System.Object" />s, <paramref name="expected" /> and <paramref name="actual" />, are not the same object. That is, the two variables do not reference the same <see cref="T:System.Object" nolink="true" />. If the <see cref="T:System.Object" nolink="true" />s are the same, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1409 <param name="expected">The <see cref="T:System.Object" /> to compare</param>
1410 <param name="actual">The <see cref="T:System.Object" /> being compared</param>
1411 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1412 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1413 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are references to the same <see cref="T:System.Object" />.</exception>
1414 </member>
1415 <member name="M:MbUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String)">
1416 <summary>Verifies that two <see cref="T:System.Object" />s, <paramref name="expected" /> and <paramref name="actual" />, are the same object. That is, the two variables reference the same <see cref="T:System.Object" nolink="true" />. If the <see cref="T:System.Object" nolink="true" />s are not the same, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
1417 <param name="expected">The <see cref="T:System.Object" /> to compare</param>
1418 <param name="actual">The <see cref="T:System.Object" /> being compared</param>
1419 <param name="message">The message to include if the test fails</param>
1420 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not references to the same <see cref="T:System.Object" />.</exception>
1421 </member>
1422 <member name="M:MbUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String,System.Object[])">
1423 <summary>Verifies that two <see cref="T:System.Object" />s, <paramref name="expected" /> and <paramref name="actual" />, are the same object. That is, the two variables reference the same <see cref="T:System.Object" nolink="true" />. If the <see cref="T:System.Object" nolink="true" />s are not the same, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1424 <param name="expected">The <see cref="T:System.Object" /> to compare</param>
1425 <param name="actual">The <see cref="T:System.Object" /> being compared</param>
1426 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1427 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1428 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not references to the same <see cref="T:System.Object" />.</exception>
1429 </member>
1430 <member name="M:MbUnit.Framework.Assert.AreSame(System.Object,System.Object)">
1431 <summary>Verifies that two <see cref="T:System.Object" />s, <paramref name="expected" /> and <paramref name="actual" />, are the same object. That is, the two variables reference the same <see cref="T:System.Object" nolink="true" />. If the <see cref="T:System.Object" nolink="true" />s are not the same, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1432 <param name="expected">The <see cref="T:System.Object" /> to compare</param>
1433 <param name="actual">The <see cref="T:System.Object" /> being compared</param>
1434 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not references to the same <see cref="T:System.Object" />.</exception>
1435 </member>
1436 <member name="M:MbUnit.Framework.Assert.AreValueEqual(System.Reflection.PropertyInfo,System.Object,System.Object,System.Object[])">
1437 <summary>Verifies that given two objects, <paramref name="expected" /> and <paramref name="actual" />, the property described by the <see cref="T:System.Reflection.PropertyInfo" /> object <paramref name="pi" /> is present in both objects, is not null, and that the value of the property in both objects is equal.</summary>
1438 <param name="pi">The <see cref="T:System.Reflection.PropertyInfo" /> object indicating the property to be tested</param>
1439 <param name="expected">The object containing the expected value of the property</param>
1440 <param name="actual">The object containing the actual value of the property</param>
1441 <param name="indices">The index of the value in the property if it is an indexed property</param>
1442 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">One or both of <paramref name="expected" /> and <paramref name="actual" /> are null</exception>
1443 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">The property that <paramref name="pi" /> describes is not present in either <paramref name="expected" /> or <paramref name="actual" /></exception>
1444 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">The property values in <paramref name="expected" /> and <paramref name="actual" /> are not equal</exception>
1445 </member>
1446 <member name="M:MbUnit.Framework.Assert.Between(System.Int32,System.Int32,System.Int32)">
1447 <summary>Verifies that for three integers, <paramref name="test" /> is between or equal to one of <paramref name="left" /> and <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1448 <param name="test">The integer being tested</param>
1449 <param name="left">An integer marking one of end of a range</param>
1450 <param name="right">An integer marking the other end of a range</param>
1451 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
1452 </member>
1453 <member name="M:MbUnit.Framework.Assert.Between(System.Int32,System.Int32,System.Int32,System.String,System.Object[])">
1454 <summary>Verifies that for three integers, <paramref name="test" /> is between or equal to one of <paramref name="left" /> and <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1455 <param name="test">The integer being tested</param>
1456 <param name="left">An integer marking one of end of a range</param>
1457 <param name="right">An integer marking the other end of a range</param>
1458 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1459 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1460 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
1461 </member>
1462 <member name="M:MbUnit.Framework.Assert.Between(System.Int16,System.Int16,System.Int16)">
1463 <summary>Verifies that for three <see cref="T:System.Int16">short integers</see>, <paramref name="test" /> is between or equal to one of <paramref name="left" /> and <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1464 <param name="test">The <see cref="T:System.Int16">short integer</see> being tested</param>
1465 <param name="left">A <see cref="T:System.Int16">short integer</see> marking one of end of a range</param>
1466 <param name="right">A <see cref="T:System.Int16">short integer</see> marking the other end of a range</param>
1467 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
1468 </member>
1469 <member name="M:MbUnit.Framework.Assert.Between(System.Int16,System.Int16,System.Int16,System.String)">
1470 <summary>Verifies that for three <see cref="T:System.Int16">short integer</see>s, <paramref name="test" /> is between or equal to one of <paramref name="left" /> and <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1471 <param name="test">The <see cref="T:System.Int16">short integer</see> being tested</param>
1472 <param name="left">A <see cref="T:System.Int16">short integer</see> marking one of end of a range</param>
1473 <param name="right">A <see cref="T:System.Int16">short integer</see> marking the other end of a range</param>
1474 <param name="message">The message printed out upon failure</param>
1475 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
1476 </member>
1477 <member name="M:MbUnit.Framework.Assert.Between(System.Int16,System.Int16,System.Int16,System.String,System.Object[])">
1478 <summary>Verifies that for three <see cref="T:System.Int16">short integer</see>s, <paramref name="test" /> is between or equal to one of <paramref name="left" /> and <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1479 <param name="test">The <see cref="T:System.Int16">short integer</see> being tested</param>
1480 <param name="left">A <see cref="T:System.Int16">short integer</see> marking one of end of a range</param>
1481 <param name="right">A <see cref="T:System.Int16">short integer</see> marking the other end of a range</param>
1482 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1483 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1484 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
1485 </member>
1486 <member name="M:MbUnit.Framework.Assert.Between(System.Byte,System.Byte,System.Byte)">
1487 <summary>Verifies that for three <see cref="T:System.Byte" />s, <paramref name="test" /> is between or equal to one of <paramref name="left" /> and <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1488 <param name="test">The value between 0 and 255 being tested</param>
1489 <param name="left">The value between 0 and 255 marking one of end of a range</param>
1490 <param name="right">The value between 0 and 255 marking the other end of a range</param>
1491 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
1492 </member>
1493 <member name="M:MbUnit.Framework.Assert.Between(System.Byte,System.Byte,System.Byte,System.String)">
1494 <summary>Verifies that for three <see cref="T:System.Byte" />s, <paramref name="test" /> is between or equal to one of <paramref name="left" /> and <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1495 <param name="test">The value between 0 and 255 being tested</param>
1496 <param name="left">The value between 0 and 255 marking one of end of a range</param>
1497 <param name="right">The value between 0 and 255 marking the other end of a range</param>
1498 <param name="message">The message printed out upon failure</param>
1499 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
1500 </member>
1501 <member name="M:MbUnit.Framework.Assert.Between(System.Byte,System.Byte,System.Byte,System.String,System.Object[])">
1502 <summary>Verifies that for three <see cref="T:System.Byte" />s, <paramref name="test" /> is between or equal to one of <paramref name="left" /> and <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1503 <param name="test">The value between 0 and 255 being tested</param>
1504 <param name="left">The value between 0 and 255 marking one of end of a range</param>
1505 <param name="right">The value between 0 and 255 marking the other end of a range</param>
1506 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1507 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1508 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
1509 </member>
1510 <member name="M:MbUnit.Framework.Assert.Between(System.Int64,System.Int64,System.Int64)">
1511 <summary>Verifies that for three <see cref="T:System.Int64">long integer</see>s, <paramref name="test" /> is between or equal to one of <paramref name="left" /> and <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1512 <param name="test">The <see cref="T:System.Int64">long integer</see> being tested</param>
1513 <param name="left">A <see cref="T:System.Int64">long integer</see> marking one of end of a range</param>
1514 <param name="right">A <see cref="T:System.Int64">long integer</see> marking the other end of a range</param>
1515 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
1516 </member>
1517 <member name="M:MbUnit.Framework.Assert.Between(System.Int64,System.Int64,System.Int64,System.String)">
1518 <summary>Verifies that for three <see cref="T:System.Int64">long integer</see>s, <paramref name="test" /> is between or equal to one of <paramref name="left" /> and <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1519 <param name="test">The <see cref="T:System.Int64">long integer</see> being tested</param>
1520 <param name="left">A <see cref="T:System.Int64">long integer</see> marking one of end of a range</param>
1521 <param name="right">A <see cref="T:System.Int64">long integer</see> marking the other end of a range</param>
1522 <param name="message">The message printed out upon failure</param>
1523 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
1524 </member>
1525 <member name="M:MbUnit.Framework.Assert.Between(System.Int64,System.Int64,System.Int64,System.String,System.Object[])">
1526 <summary>Verifies that for three <see cref="T:System.Int64">long integer</see>s, <paramref name="test" /> is between or equal to one of <paramref name="left" /> and <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1527 <param name="test">The <see cref="T:System.Int64">long integer</see> being tested</param>
1528 <param name="left">A <see cref="T:System.Int64">long integer</see> marking one of end of a range</param>
1529 <param name="right">A <see cref="T:System.Int64">long integer</see> marking the other end of a range</param>
1530 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1531 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1532 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
1533 </member>
1534 <member name="M:MbUnit.Framework.Assert.Between(System.Double,System.Double,System.Double)">
1535 <summary>Verifies that for three doubles, <paramref name="test" /> is between or equal to one of <paramref name="left" /> and <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1536 <param name="test">The double being tested</param>
1537 <param name="left">A double marking one of end of a range</param>
1538 <param name="right">A double marking the other end of a range</param>
1539 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
1540 </member>
1541 <member name="M:MbUnit.Framework.Assert.Between(System.Double,System.Double,System.Double,System.String)">
1542 <summary>Verifies that for three doubles, <paramref name="test" /> is between or equal to one of <paramref name="left" /> and <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1543 <param name="test">The double being tested</param>
1544 <param name="left">A double marking one of end of a range</param>
1545 <param name="right">A double marking the other end of a range</param>
1546 <param name="message">The message printed out upon failure</param>
1547 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
1548 </member>
1549 <member name="M:MbUnit.Framework.Assert.Between(System.Double,System.Double,System.Double,System.String,System.Object[])">
1550 <summary>Verifies that for three doubles, <paramref name="test" /> is between or equal to one of <paramref name="left" /> and <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1551 <param name="test">The double being tested</param>
1552 <param name="left">A double marking one of end of a range</param>
1553 <param name="right">A double marking the other end of a range</param>
1554 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1555 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1556 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
1557 </member>
1558 <member name="M:MbUnit.Framework.Assert.Between(System.Single,System.Single,System.Single)">
1559 <summary>Verifies that for three floats, <paramref name="test" /> is between or equal to one of <paramref name="left" /> and <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1560 <param name="test">The float being tested</param>
1561 <param name="left">A float marking one of end of a range</param>
1562 <param name="right">A float marking the other end of a range</param>
1563 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
1564 </member>
1565 <member name="M:MbUnit.Framework.Assert.Between(System.Single,System.Single,System.Single,System.String)">
1566 <summary>Verifies that for three floats, <paramref name="test" /> is between or equal to one of <paramref name="left" /> and <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1567 <param name="test">The float being tested</param>
1568 <param name="left">A float marking one of end of a range</param>
1569 <param name="right">A float marking the other end of a range</param>
1570 <param name="message">The message printed out upon failure</param>
1571 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
1572 </member>
1573 <member name="M:MbUnit.Framework.Assert.Between(System.Single,System.Single,System.Single,System.String,System.Object[])">
1574 <summary>Verifies that for three floats, <paramref name="test" /> is between or equal to one of <paramref name="left" /> and <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1575 <param name="test">The float being tested</param>
1576 <param name="left">A float marking one of end of a range</param>
1577 <param name="right">A float marking the other end of a range</param>
1578 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1579 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1580 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
1581 </member>
1582 <member name="M:MbUnit.Framework.Assert.Between(System.IComparable,System.IComparable,System.IComparable)">
1583 <summary>Verifies that for three objects derived from <see cref="T:System.IComparable" />, <paramref name="test" /> is between or equal to one of <paramref name="left" /> and <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1584 <param name="test">The object derived from <see cref="T:System.IComparable" /> being tested</param>
1585 <param name="left">The object derived from <see cref="T:System.IComparable" /> marking one of end of a range</param>
1586 <param name="right">The object derived from <see cref="T:System.IComparable" /> marking the other end of a range</param>
1587 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
1588 <exception cref="T:System.ArgumentException"> Thrown if <paramref name="test" />, <paramref name="left" /> and <paramref name="right" /> are not of the same type</exception>
1589 </member>
1590 <member name="M:MbUnit.Framework.Assert.Between(System.IComparable,System.IComparable,System.IComparable,System.String)">
1591 <summary>Verifies that for three objects derived from <see cref="T:System.IComparable" />, <paramref name="test" /> is between or equal to one of <paramref name="left" /> and <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1592 <param name="test">The object derived from <see cref="T:System.IComparable" /> being tested</param>
1593 <param name="left">The object derived from <see cref="T:System.IComparable" /> marking one of end of a range</param>
1594 <param name="right">The object derived from <see cref="T:System.IComparable" /> marking the other end of a range</param>
1595 <param name="message">The message printed out upon failure</param>
1596 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
1597 <exception cref="T:System.ArgumentException"> Thrown if <paramref name="test" />, <paramref name="left" /> and <paramref name="right" /> are not of the same type</exception>
1598 </member>
1599 <member name="M:MbUnit.Framework.Assert.Between(System.IComparable,System.IComparable,System.IComparable,System.String,System.Object[])">
1600 <summary>Verifies that for three objects derived from <see cref="T:System.IComparable" />, <paramref name="test" /> is between or equal to one of <paramref name="left" /> and <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1601 <param name="test">The object derived from <see cref="T:System.IComparable" /> being tested</param>
1602 <param name="left">The object derived from <see cref="T:System.IComparable" /> marking one of end of a range</param>
1603 <param name="right">The object derived from <see cref="T:System.IComparable" /> marking the other end of a range</param>
1604 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1605 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1606 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
1607 <exception cref="T:System.ArgumentException"> Thrown if <paramref name="test" />, <paramref name="left" /> and <paramref name="right" /> are not of the same type</exception>
1608 </member>
1609 <member name="M:MbUnit.Framework.Assert.Contains(System.String,System.String)">
1610 <summary>Verifies that <paramref name="s" /> is a substring of <paramref name="contain" />.</summary>
1611 <param name="s">The string that should be contained within <paramref name="contain" /></param>
1612 <param name="contain">The string that should contain <paramref name="s" /></param>
1613 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="s" /> is not a substring of <paramref name="contain" />.</exception>
1614 </member>
1615 <member name="M:MbUnit.Framework.Assert.Equals(System.Object,System.Object)">
1616 <summary>The Equals method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" />. This is done to make sure there is no mistake by calling this function. Use <see cref="M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object)">AreEqual</see> instead or one of its overloads.</summary>
1617 <param name="a">The first <see cref="T:System.Object" /> to compare</param>
1618 <param name="b">The second <see cref="T:System.Object" /> to compare</param>
1619 <returns>True if the values are equal, false otherwise</returns>
1620 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Always thrown as this method should not be used.</exception>
1621 </member>
1622 <member name="M:MbUnit.Framework.Assert.Fail(System.String,System.Object[])">
1623 <summary>Throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1624 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1625 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1626 <exception cref="T:MbUnit.Core.Exceptions.AssertionException" />
1627 </member>
1628 <member name="M:MbUnit.Framework.Assert.Fail(System.String)">
1629 <summary>Throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with a given <paramref name="message" />.</summary>
1630 <param name="message">The message printed out with the failure</param>
1631 <exception cref="T:MbUnit.Core.Exceptions.AssertionException" />
1632 </member>
1633 <member name="M:MbUnit.Framework.Assert.Fail">
1634 <summary>Throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" />.</summary>
1635 <exception cref="T:MbUnit.Core.Exceptions.AssertionException" />
1636 </member>
1637 <member name="M:MbUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String,System.Object[])">
1638 <summary>Verifies that for two integers, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="message" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1639 <param name="arg1">An integer</param>
1640 <param name="arg2">An integer</param>
1641 <param name="message">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1642 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1643 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1644 </member>
1645 <member name="M:MbUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String)">
1646 <summary>Verifies that for two integers, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1647 <param name="arg1">An integer</param>
1648 <param name="arg2">An integer</param>
1649 <param name="message">The message printed out upon failure</param>
1650 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1651 </member>
1652 <member name="M:MbUnit.Framework.Assert.Greater(System.Int32,System.Int32)">
1653 <summary>Verifies that for two integers, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1654 <param name="arg1">An integer</param>
1655 <param name="arg2">An integer</param>
1656 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1657 </member>
1658 <member name="M:MbUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String,System.Object[])">
1659 <summary>Verifies that for two <see cref="T:System.UInt32">unsigned integers</see>, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="message" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1660 <param name="arg1">An <see cref="T:System.UInt32">unsigned integers</see></param>
1661 <param name="arg2">An <see cref="T:System.UInt32">unsigned integers</see></param>
1662 <param name="message">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1663 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1664 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1665 </member>
1666 <member name="M:MbUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String)">
1667 <summary>Verifies that for two <see cref="T:System.UInt32">unsigned integers</see>, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1668 <param name="arg1">An <see cref="T:System.UInt32">unsigned integers</see></param>
1669 <param name="arg2">An <see cref="T:System.UInt32">unsigned integers</see></param>
1670 <param name="message">The message printed out upon failure</param>
1671 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1672 </member>
1673 <member name="M:MbUnit.Framework.Assert.Greater(System.UInt32,System.UInt32)">
1674 <summary>Verifies that for two <see cref="T:System.UInt32">unsigned integers</see>, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1675 <param name="arg1">An <see cref="T:System.UInt32">unsigned integers</see></param>
1676 <param name="arg2">An <see cref="T:System.UInt32">unsigned integers</see></param>
1677 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1678 </member>
1679 <member name="M:MbUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String,System.Object[])">
1680 <summary>Verifies that for two <see cref="T:System.Decimal">128-bit integers</see>, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="message" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1681 <param name="arg1">A <see cref="T:System.Decimal">128-bit integer</see></param>
1682 <param name="arg2">A <see cref="T:System.Decimal">128-bit integer</see></param>
1683 <param name="message">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1684 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1685 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1686 </member>
1687 <member name="M:MbUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String)">
1688 <summary>Verifies that for two <see cref="T:System.Decimal">128-bit integers</see>, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1689 <param name="arg1">A <see cref="T:System.Decimal">128-bit integer</see></param>
1690 <param name="arg2">A <see cref="T:System.Decimal">128-bit integer</see></param>
1691 <param name="message">The message printed out upon failure</param>
1692 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1693 </member>
1694 <member name="M:MbUnit.Framework.Assert.Greater(System.Decimal,System.Decimal)">
1695 <summary>Verifies that for two <see cref="T:System.Decimal">128-bit integers</see>, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1696 <param name="arg1">A <see cref="T:System.Decimal">128-bit integer</see></param>
1697 <param name="arg2">A <see cref="T:System.Decimal">128-bit integer</see></param>
1698 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1699 </member>
1700 <member name="M:MbUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String,System.Object[])">
1701 <summary>Verifies that for two <see cref="T:System.Int64">long integers</see>, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="message" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1702 <param name="arg1">A <see cref="T:System.Int64">long integer</see></param>
1703 <param name="arg2">A <see cref="T:System.Int64">long integer</see></param>
1704 <param name="message">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1705 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1706 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1707 </member>
1708 <member name="M:MbUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String)">
1709 <summary>Verifies that for two <see cref="T:System.Int64">long integers</see>, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1710 <param name="arg1">A <see cref="T:System.Int64">long integer</see></param>
1711 <param name="arg2">A <see cref="T:System.Int64">long integer</see></param>
1712 <param name="message">The message printed out upon failure</param>
1713 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1714 </member>
1715 <member name="M:MbUnit.Framework.Assert.Greater(System.Int64,System.Int64)">
1716 <summary>Verifies that for two <see cref="T:System.Int64">long integers</see>, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1717 <param name="arg1">A <see cref="T:System.Int64">long integer</see></param>
1718 <param name="arg2">A <see cref="T:System.Int64">long integer</see></param>
1719 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1720 </member>
1721 <member name="M:MbUnit.Framework.Assert.Greater(System.Double,System.Double,System.String,System.Object[])">
1722 <summary>Verifies that for two <see cref="T:System.Double">doubles</see>, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="message" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1723 <param name="arg1">A <see cref="T:System.Double">double</see></param>
1724 <param name="arg2">A <see cref="T:System.Double">doubles</see></param>
1725 <param name="message">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1726 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1727 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1728 </member>
1729 <member name="M:MbUnit.Framework.Assert.Greater(System.Double,System.Double,System.String)">
1730 <summary>Verifies that for two <see cref="T:System.Double">doubles</see>, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1731 <param name="arg1">A <see cref="T:System.Double">double</see></param>
1732 <param name="arg2">A <see cref="T:System.Double">double</see></param>
1733 <param name="message">The message printed out upon failure</param>
1734 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1735 </member>
1736 <member name="M:MbUnit.Framework.Assert.Greater(System.Double,System.Double)">
1737 <summary>Verifies that for two <see cref="T:System.Double">doubles</see>, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1738 <param name="arg1">A <see cref="T:System.Double">double</see></param>
1739 <param name="arg2">A <see cref="T:System.Double">double</see></param>
1740 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1741 </member>
1742 <member name="M:MbUnit.Framework.Assert.Greater(System.Single,System.Single,System.String,System.Object[])">
1743 <summary>Verifies that for two <see cref="T:System.Single">floats</see>, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="message" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1744 <param name="arg1">A <see cref="T:System.Single">float</see></param>
1745 <param name="arg2">A <see cref="T:System.Single">float</see></param>
1746 <param name="message">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1747 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1748 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1749 </member>
1750 <member name="M:MbUnit.Framework.Assert.Greater(System.Single,System.Single,System.String)">
1751 <summary>Verifies that for two <see cref="T:System.Single">floats</see>, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1752 <param name="arg1">A <see cref="T:System.Single">float</see></param>
1753 <param name="arg2">A <see cref="T:System.Single">float</see></param>
1754 <param name="message">The message printed out upon failure</param>
1755 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1756 </member>
1757 <member name="M:MbUnit.Framework.Assert.Greater(System.Single,System.Single)">
1758 <summary>Verifies that for two <see cref="T:System.Single">floats</see>, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1759 <param name="arg1">A <see cref="T:System.Single">float</see></param>
1760 <param name="arg2">A <see cref="T:System.Single">float</see></param>
1761 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1762 </member>
1763 <member name="M:MbUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String,System.Object[])">
1764 <summary>Verifies that for two objects derived from <see cref="T:System.IComparable" />, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="message" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1765 <param name="arg1">An object derived from <see cref="T:System.IComparable" /></param>
1766 <param name="arg2">An object derived from <see cref="T:System.IComparable" /></param>
1767 <param name="message">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1768 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1769 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1770 <exception cref="T:System.ArgumentException"> Thrown if <paramref name="arg1" /> and <paramref name="arg2" /> are not of the same type</exception>
1771 </member>
1772 <member name="M:MbUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String)">
1773 <summary>Verifies that for two objects derived from <see cref="T:System.IComparable" />, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1774 <param name="arg1">An object derived from <see cref="T:System.IComparable" /></param>
1775 <param name="arg2">An object derived from <see cref="T:System.IComparable" /></param>
1776 <param name="message">The message printed out upon failure</param>
1777 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1778 </member>
1779 <member name="M:MbUnit.Framework.Assert.Greater(System.IComparable,System.IComparable)">
1780 <summary>Verifies that for two objects derived from <see cref="T:System.IComparable" />, <paramref name="arg1" /> is strictly greater than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1781 <param name="arg1">An object derived from <see cref="T:System.IComparable" /></param>
1782 <param name="arg2">An object derived from <see cref="T:System.IComparable" /></param>
1783 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or less than <paramref name="arg2" /> or if either value is null.</exception>
1784 </member>
1785 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int16,System.Int16)">
1786 <summary>Verifies that for two <see cref="T:System.Int16">short integers</see>, <paramref name="left" /> is greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1787 <param name="left">A <see cref="T:System.Int16">short integer</see></param>
1788 <param name="right">A <see cref="T:System.Int16">short integer</see></param>
1789 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is less than <paramref name="right" /> or if either value is null.</exception>
1790 </member>
1791 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int16,System.Int16,System.String)">
1792 <summary>Verifies that for two <see cref="T:System.Int16">short integers</see>, <paramref name="left" /> is greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1793 <param name="left">A <see cref="T:System.Int16">short integer</see></param>
1794 <param name="right">A <see cref="T:System.Int16">short integer</see></param>
1795 <param name="message">The message printed out upon failure</param>
1796 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is less than <paramref name="right" /> or if either value is null.</exception>
1797 </member>
1798 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int16,System.Int16,System.String,System.Object[])">
1799 <summary>Verifies that for two <see cref="T:System.Int16">short integers</see>, <paramref name="left" /> is strictly greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1800 <param name="left">A <see cref="T:System.Int16">short integer</see></param>
1801 <param name="right">A <see cref="T:System.Int16">short integer</see></param>
1802 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1803 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1804 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is less than <paramref name="right" /> or if either value is null.</exception>
1805 </member>
1806 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Byte,System.Byte)">
1807 <summary>Verifies that for two <see cref="T:System.Byte" />s, <paramref name="left" /> is greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1808 <param name="left">A <see cref="T:System.Byte" /> value (0 to 255)</param>
1809 <param name="right">A <see cref="T:System.Byte" /> value (0 to 255)</param>
1810 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is less than <paramref name="right" /> or if either value is null.</exception>
1811 </member>
1812 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Byte,System.Byte,System.String)">
1813 <summary>Verifies that for two <see cref="T:System.Byte" />s, <paramref name="left" /> is greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1814 <param name="left">A <see cref="T:System.Byte" /> value (0 to 255)</param>
1815 <param name="right">A <see cref="T:System.Byte" /> value (0 to 255)</param>
1816 <param name="message">The message printed out upon failure</param>
1817 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is less than <paramref name="right" /> or if either value is null.</exception>
1818 </member>
1819 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Byte,System.Byte,System.String,System.Object[])">
1820 <summary>Verifies that for two <see cref="T:System.Byte" />s, <paramref name="left" /> is strictly greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1821 <param name="left">A <see cref="T:System.Byte" /> value (0 to 255)</param>
1822 <param name="right">A <see cref="T:System.Byte" /> value (0 to 255)</param>
1823 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1824 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1825 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is less than <paramref name="right" /> or if either value is null.</exception>
1826 </member>
1827 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int64,System.Int64)">
1828 <summary>Verifies that for two <see cref="T:System.Int64">long integer</see>s, <paramref name="left" /> is greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1829 <param name="left">A <see cref="T:System.Int64">long integer</see></param>
1830 <param name="right">A <see cref="T:System.Int64">long integer</see></param>
1831 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is less than <paramref name="right" /> or if either value is null.</exception>
1832 </member>
1833 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int64,System.Int64,System.String)">
1834 <summary>Verifies that for two <see cref="T:System.Int64">long integer</see>s, <paramref name="left" /> is greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1835 <param name="left">A <see cref="T:System.Int64">long integer</see></param>
1836 <param name="right">A <see cref="T:System.Int64">long integer</see></param>
1837 <param name="message">The message printed out upon failure</param>
1838 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is less than <paramref name="right" /> or if either value is null.</exception>
1839 </member>
1840 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int64,System.Int64,System.String,System.Object[])">
1841 <summary>Verifies that for two <see cref="T:System.Int64">long integer</see>s, <paramref name="left" /> is strictly greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1842 <param name="left">A <see cref="T:System.Int64">long integer</see></param>
1843 <param name="right">A <see cref="T:System.Int64">long integer</see></param>
1844 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1845 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1846 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is less than <paramref name="right" /> or if either value is null.</exception>
1847 </member>
1848 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Double,System.Double)">
1849 <summary>Verifies that for two doubles, <paramref name="left" /> is greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1850 <param name="left">A double</param>
1851 <param name="right">A double</param>
1852 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is less than <paramref name="right" /> or if either value is null.</exception>
1853 </member>
1854 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Double,System.Double,System.String)">
1855 <summary>Verifies that for two doubles, <paramref name="left" /> is greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1856 <param name="left">A double</param>
1857 <param name="right">A double</param>
1858 <param name="message">The message printed out upon failure</param>
1859 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is less than <paramref name="right" /> or if either value is null.</exception>
1860 </member>
1861 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Double,System.Double,System.String,System.Object[])">
1862 <summary>Verifies that for two doubles, <paramref name="left" /> is strictly greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1863 <param name="left">A double</param>
1864 <param name="right">A double</param>
1865 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1866 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1867 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is less than <paramref name="right" /> or if either value is null.</exception>
1868 </member>
1869 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Single,System.Single)">
1870 <summary>Verifies that for two floats, <paramref name="left" /> is greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1871 <param name="left">A float</param>
1872 <param name="right">A float</param>
1873 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is less than <paramref name="right" /> or if either value is null.</exception>
1874 </member>
1875 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Single,System.Single,System.String)">
1876 <summary>Verifies that for two floats, <paramref name="left" /> is greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1877 <param name="left">A float</param>
1878 <param name="right">A float</param>
1879 <param name="message">The message printed out upon failure</param>
1880 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is less than <paramref name="right" /> or if either value is null.</exception>
1881 </member>
1882 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Single,System.Single,System.String,System.Object[])">
1883 <summary>Verifies that for two floats, <paramref name="left" /> is strictly greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1884 <param name="left">A float</param>
1885 <param name="right">A float</param>
1886 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1887 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1888 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is less than <paramref name="right" /> or if either value is null.</exception>
1889 </member>
1890 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.IComparable,System.IComparable)">
1891 <summary>Verifies that for two objects derived from <see cref="T:System.IComparable" />, <paramref name="left" /> is greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1892 <param name="left">An object derived from <see cref="T:System.IComparable" /></param>
1893 <param name="right">An object derived from <see cref="T:System.IComparable" /></param>
1894 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
1895 <exception cref="T:System.ArgumentException"> Thrown if <paramref name="left" /> and <paramref name="right" /> are not of the same type</exception>
1896 </member>
1897 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.IComparable,System.IComparable,System.String)">
1898 <summary>Verifies that for two objects derived from <see cref="T:System.IComparable" />, <paramref name="left" /> is greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1899 <param name="left">An object derived from <see cref="T:System.IComparable" /></param>
1900 <param name="right">An object derived from <see cref="T:System.IComparable" /></param>
1901 <param name="message">The message printed out upon failure</param>
1902 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is less than <paramref name="right" /> or if either value is null.</exception>
1903 <exception cref="T:System.ArgumentException"> Thrown if <paramref name="left" /> and <paramref name="right" /> are not of the same type</exception>
1904 </member>
1905 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.IComparable,System.IComparable,System.String,System.Object[])">
1906 <summary>Verifies that for two objects derived from <see cref="T:System.IComparable" />, <paramref name="left" /> is strictly greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1907 <param name="left">An object derived from <see cref="T:System.IComparable" /></param>
1908 <param name="right">An object derived from <see cref="T:System.IComparable" /></param>
1909 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1910 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1911 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
1912 <exception cref="T:System.ArgumentException"> Thrown if <paramref name="left" /> and <paramref name="right" /> are not of the same type</exception>
1913 </member>
1914 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int32,System.Int32)">
1915 <summary>Verifies that for two integers, <paramref name="left" /> is greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1916 <param name="left">An integer</param>
1917 <param name="right">An integer</param>
1918 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is less than <paramref name="right" /> or if either value is null.</exception>
1919 </member>
1920 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int32,System.Int32,System.String)">
1921 <summary>Verifies that for two integers, <paramref name="left" /> is greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1922 <param name="left">An integer</param>
1923 <param name="right">An integer</param>
1924 <param name="message">The message printed out upon failure</param>
1925 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is less than <paramref name="right" /> or if either value is null.</exception>
1926 </member>
1927 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int32,System.Int32,System.String,System.Object[])">
1928 <summary>Verifies that for two integers, <paramref name="left" /> is strictly greater than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1929 <param name="left">An integer</param>
1930 <param name="right">An integer</param>
1931 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1932 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1933 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is less than <paramref name="right" /> or if either value is null.</exception>
1934 </member>
1935 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int32,System.Int32)">
1936 <summary>Verifies that for two integers, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1937 <param name="left">An integer</param>
1938 <param name="right">An integer</param>
1939 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or less than <paramref name="right" /> or if either value is null.</exception>
1940 </member>
1941 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int32,System.Int32,System.String)">
1942 <summary>Verifies that for two integers, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
1943 <param name="left">An integer</param>
1944 <param name="right">An integer</param>
1945 <param name="message">The message printed out upon failure</param>
1946 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or less than <paramref name="right" /> or if either value is null.</exception>
1947 </member>
1948 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int32,System.Int32,System.String,System.Object[])">
1949 <summary>Verifies that for two integers, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1950 <param name="left">An integer</param>
1951 <param name="right">An integer</param>
1952 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1953 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1954 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or less than <paramref name="right" /> or if either value is null.</exception>
1955 </member>
1956 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int16,System.Int16)">
1957 <summary>Verifies that for two <see cref="T:System.Int16">short integer</see> values, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1958 <param name="left">A <see cref="T:System.Int16">short integer</see> value</param>
1959 <param name="right">A <see cref="T:System.Int16">short integer</see> value</param>
1960 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or less than <paramref name="right" /> or if either value is null.</exception>
1961 </member>
1962 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int16,System.Int16,System.String)">
1963 <summary>Verifies that for two <see cref="T:System.Int16">short integer</see> values, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
1964 <param name="left">A <see cref="T:System.Int16">short integer</see> value</param>
1965 <param name="right">A <see cref="T:System.Int16">short integer</see> value</param>
1966 <param name="message">The message printed out upon failure</param>
1967 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or less than <paramref name="right" /> or if either value is null.</exception>
1968 </member>
1969 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int16,System.Int16,System.String,System.Object[])">
1970 <summary>Verifies that for two <see cref="T:System.Int16">short integer</see> values, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1971 <param name="left">A <see cref="T:System.Int16">short integer</see> value</param>
1972 <param name="right">A <see cref="T:System.Int16">short integer</see> value</param>
1973 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1974 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1975 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or less than <paramref name="right" /> or if either value is null.</exception>
1976 </member>
1977 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Byte,System.Byte)">
1978 <summary>Verifies that for two <see cref="T:System.Byte" />s, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1979 <param name="left">A <see cref="T:System.Byte" /> value (0 to 255)</param>
1980 <param name="right">A <see cref="T:System.Byte" /> value (0 to 255)</param>
1981 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or less than <paramref name="right" /> or if either value is null.</exception>
1982 </member>
1983 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Byte,System.Byte,System.String)">
1984 <summary>Verifies that for two <see cref="T:System.Byte" />s, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
1985 <param name="left">A <see cref="T:System.Byte" /> value (0 to 255)</param>
1986 <param name="right">A <see cref="T:System.Byte" /> value (0 to 255)</param>
1987 <param name="message">The message printed out upon failure</param>
1988 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or less than <paramref name="right" /> or if either value is null.</exception>
1989 </member>
1990 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Byte,System.Byte,System.String,System.Object[])">
1991 <summary>Verifies that for two <see cref="T:System.Byte" />s, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1992 <param name="left">A <see cref="T:System.Byte" /> value (0 to 255)</param>
1993 <param name="right">A <see cref="T:System.Byte" /> value (0 to 255)</param>
1994 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1995 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1996 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or less than <paramref name="right" /> or if either value is null.</exception>
1997 </member>
1998 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int64,System.Int64)">
1999 <summary>Verifies that for two <see cref="T:System.Int64">long integer</see>s, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2000 <param name="left">A <see cref="T:System.Int64">long integer</see></param>
2001 <param name="right">A <see cref="T:System.Int64">long integer</see></param>
2002 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or less than <paramref name="right" /> or if either value is null.</exception>
2003 </member>
2004 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int64,System.Int64,System.String)">
2005 <summary>Verifies that for two <see cref="T:System.Int64">long integer</see>s, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
2006 <param name="left">A <see cref="T:System.Int64">long integer</see></param>
2007 <param name="right">A <see cref="T:System.Int64">long integer</see></param>
2008 <param name="message">The message printed out upon failure</param>
2009 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or less than <paramref name="right" /> or if either value is null.</exception>
2010 </member>
2011 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int64,System.Int64,System.String,System.Object[])">
2012 <summary>Verifies that for two <see cref="T:System.Int64">long integer</see>s, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2013 <param name="left">A <see cref="T:System.Int64">long integer</see></param>
2014 <param name="right">A <see cref="T:System.Int64">long integer</see></param>
2015 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2016 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2017 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or less than <paramref name="right" /> or if either value is null.</exception>
2018 </member>
2019 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Double,System.Double)">
2020 <summary>Verifies that for two doubles, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2021 <param name="left">A double</param>
2022 <param name="right">A double</param>
2023 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or less than <paramref name="right" /> or if either value is null.</exception>
2024 </member>
2025 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Double,System.Double,System.String)">
2026 <summary>Verifies that for two doubles, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
2027 <param name="left">A double</param>
2028 <param name="right">A double</param>
2029 <param name="message">The message printed out upon failure</param>
2030 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or less than <paramref name="right" /> or if either value is null.</exception>
2031 </member>
2032 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Double,System.Double,System.String,System.Object[])">
2033 <summary>Verifies that for two doubles, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2034 <param name="left">A double</param>
2035 <param name="right">A double</param>
2036 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2037 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2038 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or less than <paramref name="right" /> or if either value is null.</exception>
2039 </member>
2040 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Single,System.Single)">
2041 <summary>Verifies that for two floats, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2042 <param name="left">A float</param>
2043 <param name="right">A float</param>
2044 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or less than <paramref name="right" /> or if either value is null.</exception>
2045 </member>
2046 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Single,System.Single,System.String)">
2047 <summary>Verifies that for two floats, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
2048 <param name="left">A float</param>
2049 <param name="right">A float</param>
2050 <param name="message">The message printed out upon failure</param>
2051 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or less than <paramref name="right" /> or if either value is null.</exception>
2052 </member>
2053 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Single,System.Single,System.String,System.Object[])">
2054 <summary>Verifies that for two floats, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2055 <param name="left">A float</param>
2056 <param name="right">A float</param>
2057 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2058 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2059 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or less than <paramref name="right" /> or if either value is null.</exception>
2060 </member>
2061 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.IComparable,System.IComparable)">
2062 <summary>Verifies that for two objects derived from <see cref="T:System.IComparable" />, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2063 <param name="left">An object derived from <see cref="T:System.IComparable" /></param>
2064 <param name="right">An object derived from <see cref="T:System.IComparable" /></param>
2065 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2066 <exception cref="T:System.ArgumentException"> Thrown if <paramref name="left" /> and <paramref name="right" /> are not of the same type</exception>
2067 </member>
2068 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.IComparable,System.IComparable,System.String)">
2069 <summary>Verifies that for two objects derived from <see cref="T:System.IComparable" />, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
2070 <param name="left">An object derived from <see cref="T:System.IComparable" /></param>
2071 <param name="right">An object derived from <see cref="T:System.IComparable" /></param>
2072 <param name="message">The message printed out upon failure</param>
2073 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2074 <exception cref="T:System.ArgumentException"> Thrown if <paramref name="left" /> and <paramref name="right" /> are not of the same type</exception>
2075 </member>
2076 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.IComparable,System.IComparable,System.String,System.Object[])">
2077 <summary>Verifies that for two objects derived from <see cref="T:System.IComparable" />, <paramref name="left" /> is strictly greater than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2078 <param name="left">An object derived from <see cref="T:System.IComparable" /></param>
2079 <param name="right">An object derived from <see cref="T:System.IComparable" /></param>
2080 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2081 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2082 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2083 <exception cref="T:System.ArgumentException"> Thrown if <paramref name="left" /> and <paramref name="right" /> are not of the same type</exception>
2084 </member>
2085 <member name="M:MbUnit.Framework.Assert.Ignore(System.String,System.Object[])">
2086 <summary>Causes the test runner to ignore the remainder of the test and mark the test as ignored. The test runner will display a message defined via <paramref name="format" /> and <paramref name="args" /> using <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2087 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2088 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2089 <exception cref="T:System.ArgumentNullException">Thrown if the message defined via <paramref name="format" /> and <paramref name="args" /> is null</exception>
2090 </member>
2091 <member name="M:MbUnit.Framework.Assert.Ignore(System.String)">
2092 <summary>Causes the test runner to ignore the remainder of the test and mark the test as ignored with a given <paramref name="message" /></summary>
2093 <param name="message">The message to be shown in the test runner saying why the test was ignored</param>
2094 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="message" /> is null</exception>
2095 </member>
2096 <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IDictionary)">
2097 <summary>Verifies that <paramref name="dic" />, which derives from <see cref="T:System.Collections.IDictionary" />, contains an item with the key value of <paramref name="test" />. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2098 <param name="test">The key value that <paramref name="dic" /> should contain</param>
2099 <param name="dic">The <see cref="T:System.Collections.IDictionary" /> object that should contain <paramref name="test" /></param>
2100 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not contained in <paramref name="dic" /> or either object is null.</exception>
2101 </member>
2102 <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IDictionary,System.String)">
2103 <summary>Verifies that <paramref name="dic" />, which derives from <see cref="T:System.Collections.IDictionary" />, contains an item with the key value of <paramref name="test" />. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2104 <param name="test">The key value that <paramref name="dic" /> should contain</param>
2105 <param name="dic">The <see cref="T:System.Collections.IDictionary" /> object that should contain <paramref name="test" /></param>
2106 <param name="message">The message printed out upon failure</param>
2107 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not contained in <paramref name="dic" /> or either object is null.</exception>
2108 </member>
2109 <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IList)">
2110 <summary>Verifies that <paramref name="list" />, which derives from <see cref="T:System.Collections.IList" />, contains a value of <paramref name="test" />. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2111 <param name="test">The value that <paramref name="list" /> should contain</param>
2112 <param name="list">The <see cref="T:System.Collections.IList" /> object that should contain <paramref name="test" /></param>
2113 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not contained in <paramref name="list" /> or either object is null.</exception>
2114 </member>
2115 <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IList,System.String)">
2116 <summary>Verifies that <paramref name="list" />, which derives from <see cref="T:System.Collections.IList" />, contains a value of <paramref name="test" />. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a given <paramref name="message" />.</summary>
2117 <param name="test">The value that <paramref name="list" /> should contain</param>
2118 <param name="list">The <see cref="T:System.Collections.IList" /> object that should contain <paramref name="test" /></param>
2119 <param name="message">The message to display on failure</param>
2120 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not contained in <paramref name="list" /> or either object is null.</exception>
2121 </member>
2122 <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IEnumerable,System.String)">
2123 <summary>Verifies that <paramref name="enumerable" />, which derives from <see cref="T:System.Collections.IEnumerable" />, contains a value of <paramref name="test" />. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2124 <param name="test">The value that <paramref name="enumerable" /> should contain</param>
2125 <param name="enumerable">The <see cref="T:System.Collections.IEnumerable" /> object that should contain <paramref name="test" /></param>
2126 <param name="message">The message given upon failure</param>
2127 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not contained in <paramref name="enumerable" /> or either object is null.</exception>
2128 </member>
2129 <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IEnumerable)">
2130 <summary>Verifies that <paramref name="enumerable" />, which derives from <see cref="T:System.Collections.IEnumerable" />, contains a value of <paramref name="test" />. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2131 <param name="test">The value that <paramref name="enumerable" /> should contain</param>
2132 <param name="enumerable">The <see cref="T:System.Collections.IEnumerable" /> object that should contain <paramref name="test" /></param>
2133 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is not contained in <paramref name="enumerable" /> or either object is null.</exception>
2134 </member>
2135 <member name="M:MbUnit.Framework.Assert.IncrementAssertCount">
2136 <summary>Increments <see cref="P:MbUnit.Framework.Assert.AssertCount" /> by 1</summary>
2137 </member>
2138 <member name="M:MbUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object)">
2139 <summary>Asserts that an object may be assigned a value of a given Type.</summary>
2140 <param name="expected">The expected Type.</param>
2141 <param name="actual">The object under examination</param>
2142 </member>
2143 <member name="M:MbUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String)">
2144 <summary>Asserts that an object may be assigned a value of a given Type.</summary>
2145 <param name="expected">The expected Type.</param>
2146 <param name="actual">The object under examination</param>
2147 <param name="message">The messge to display in case of failure</param>
2148 </member>
2149 <member name="M:MbUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
2150 <summary>Asserts that an object may be assigned a value of a given Type.</summary>
2151 <param name="expected">The expected Type.</param>
2152 <param name="actual">The object under examination</param>
2153 <param name="message">The message to display in case of failure</param>
2154 <param name="args">Array of objects to be used in formatting the message</param>
2155 </member>
2156 <member name="M:MbUnit.Framework.Assert.IsEmpty(System.String,System.String,System.Object[])">
2157 <summary>Verifies that the string <paramref name="aString" /> is equal to string.Empty. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="message" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2158 <param name="aString">The string that should be empty</param>
2159 <param name="message">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2160 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2161 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="aString" /> is not empty or is null.</exception>
2162 </member>
2163 <member name="M:MbUnit.Framework.Assert.IsEmpty(System.String,System.String)">
2164 <summary>Verifies that the string <paramref name="aString" /> is equal to string.Empty. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
2165 <param name="aString">The string that should be empty</param>
2166 <param name="message">The message given upon failure</param>
2167 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="aString" /> is not empty or is null.</exception>
2168 </member>
2169 <member name="M:MbUnit.Framework.Assert.IsEmpty(System.String)">
2170 <summary>Verifies that the string <paramref name="aString" /> is equal to string.Empty. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2171 <param name="aString">The string that should be empty</param>
2172 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="aString" /> is not empty or is null.</exception>
2173 </member>
2174 <member name="M:MbUnit.Framework.Assert.IsEmpty(System.Collections.ICollection,System.String,System.Object[])">
2175 <summary>Verifies that the object <paramref name="collection" /> derived from <see cref="T:System.Collections.ICollection" /> is empty. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="message" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2176 <param name="collection">The collection that should be empty</param>
2177 <param name="message">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2178 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2179 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="collection" /> is not empty or is null.</exception>
2180 </member>
2181 <member name="M:MbUnit.Framework.Assert.IsEmpty(System.Collections.ICollection,System.String)">
2182 <summary>Verifies that the object <paramref name="collection" /> derived from <see cref="T:System.Collections.ICollection" /> is empty. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2183 <param name="collection">The collection that should be empty</param>
2184 <param name="message">The message given upon failure</param>
2185 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="collection" /> is not empty or is null.</exception>
2186 </member>
2187 <member name="M:MbUnit.Framework.Assert.IsEmpty(System.Collections.ICollection)">
2188 <summary>Verifies that the object <paramref name="collection" /> derived from <see cref="T:System.Collections.ICollection" /> is empty. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2189 <param name="collection">The collection that should be empty</param>
2190 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="collection" /> is not empty or is null.</exception>
2191 </member>
2192 <member name="M:MbUnit.Framework.Assert.IsFalse(System.Boolean,System.String,System.Object[])">
2193 <summary>Asserts that a <paramref name="condition" /> is false. If true, the method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2194 <param name="condition">The evaluated condition</param>
2195 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2196 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2197 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown when <paramref name="condition" /> is not false.</exception>
2198 </member>
2199 <member name="M:MbUnit.Framework.Assert.IsFalse(System.Boolean,System.String)">
2200 <summary>Asserts that a <paramref name="condition" /> is false. If true, the method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with the given <paramref name="message" />.</summary>
2201 <param name="condition">The evaluated condition</param>
2202 <param name="message">The message printed out upon failure</param>
2203 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown when <paramref name="condition" /> is not false. </exception>
2204 </member>
2205 <member name="M:MbUnit.Framework.Assert.IsFalse(System.Boolean)">
2206 <summary>Asserts that a <paramref name="condition" /> is false. If true, the method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with no explanatory message.</summary>
2207 <param name="condition">The evaluated condition</param>
2208 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown when <paramref name="condition" /> is not false. </exception>
2209 </member>
2210 <member name="M:MbUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object)">
2211 <summary>Asserts that an object is an instance of a given type.</summary>
2212 <param name="expected">The expected Type</param>
2213 <param name="actual">The object being examined</param>
2214 </member>
2215 <member name="M:MbUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String)">
2216 <summary>Asserts that an object is an instance of a given type.</summary>
2217 <param name="expected">The expected Type</param>
2218 <param name="actual">The object being examined</param>
2219 <param name="message">A message to display in case of failure</param>
2220 </member>
2221 <member name="M:MbUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
2222 <summary>Asserts that an object is an instance of a given type.</summary>
2223 <param name="expected">The expected Type</param>
2224 <param name="actual">The object being examined</param>
2225 <param name="message">A message to display in case of failure</param>
2226 <param name="args">An array of objects to be used in formatting the message</param>
2227 </member>
2228 <member name="M:MbUnit.Framework.Assert.IsNaN(System.Double,System.String,System.Object[])">
2229 <summary>Verifies that the double value <paramref name="aDouble" /> is passed is an <c>NaN</c> value. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="message" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2230 <param name="aDouble">The value to be tested</param>
2231 <param name="message">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2232 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2233 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="aDouble" /> is not <c>NaN</c>.</exception>
2234 </member>
2235 <member name="M:MbUnit.Framework.Assert.IsNaN(System.Double,System.String)">
2236 <summary>Verifies that the double value <paramref name="aDouble" /> is passed is an <c>NaN</c> value. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given message.</summary>
2237 <param name="aDouble">The value to be tested</param>
2238 <param name="message">The message to be given on failure</param>
2239 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="aDouble" /> is not <c>NaN</c>.</exception>
2240 </member>
2241 <member name="M:MbUnit.Framework.Assert.IsNaN(System.Double)">
2242 <summary>Verifies that the double value <paramref name="aDouble" /> is passed is an <c>NaN</c> value. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2243 <param name="aDouble">The value to be tested</param>
2244 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="aDouble" /> is not <c>NaN</c>.</exception>
2245 </member>
2246 <member name="M:MbUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object)">
2247 <summary>Asserts that an object may not be assigned a value of a given Type.</summary>
2248 <param name="expected">The expected Type.</param>
2249 <param name="actual">The object under examination</param>
2250 </member>
2251 <member name="M:MbUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String)">
2252 <summary>Asserts that an object may not be assigned a value of a given Type.</summary>
2253 <param name="expected">The expected Type.</param>
2254 <param name="actual">The object under examination</param>
2255 <param name="message">The messge to display in case of failure</param>
2256 </member>
2257 <member name="M:MbUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
2258 <summary>Asserts that an object may not be assigned a value of a given Type.</summary>
2259 <param name="expected">The expected Type.</param>
2260 <param name="actual">The object under examination</param>
2261 <param name="message">The message to display in case of failure</param>
2262 <param name="args">Array of objects to be used in formatting the message</param>
2263 </member>
2264 <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.String,System.String,System.Object[])">
2265 <summary>Verifies that the string <paramref name="aString" /> is not equal to string.Empty. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="message" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2266 <param name="aString">The string that should not be empty</param>
2267 <param name="message">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2268 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2269 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="aString" /> is empty or is null.</exception>
2270 </member>
2271 <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.String,System.String)">
2272 <summary>Verifies that the string <paramref name="aString" /> is not equal to string.Empty. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
2273 <param name="aString">The string that should not be empty</param>
2274 <param name="message">The message given upon failure</param>
2275 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="aString" /> is empty or is null.</exception>
2276 </member>
2277 <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.String)">
2278 <summary>Verifies that the string <paramref name="aString" /> is not equal to string.Empty. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2279 <param name="aString">The string that should not be empty</param>
2280 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="aString" /> is empty or is null.</exception>
2281 </member>
2282 <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection,System.String,System.Object[])">
2283 <summary>Verifies that the object <paramref name="collection" /> derived from <see cref="T:System.Collections.ICollection" /> is not empty. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="message" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2284 <param name="collection">The collection that should not be empty</param>
2285 <param name="message">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2286 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2287 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="collection" /> is empty or is null.</exception>
2288 </member>
2289 <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection,System.String)">
2290 <summary>Verifies that the object <paramref name="collection" /> derived from <see cref="T:System.Collections.ICollection" /> is not empty. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2291 <param name="collection">The collection that should not be empty</param>
2292 <param name="message">The message given upon failure</param>
2293 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="collection" /> is empty or is null.</exception>
2294 </member>
2295 <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection)">
2296 <summary>Verifies that the object <paramref name="collection" /> derived from <see cref="T:System.Collections.ICollection" /> is not empty. If this not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2297 <param name="collection">The collection that should not be empty</param>
2298 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="collection" /> is empty or is null.</exception>
2299 </member>
2300 <member name="M:MbUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
2301 <summary>Asserts that an object is not an instance of a given type.</summary>
2302 <param name="expected">The expected Type</param>
2303 <param name="actual">The object being examined</param>
2304 <param name="message">A message to display in case of failure</param>
2305 <param name="args">An array of objects to be used in formatting the message</param>
2306 </member>
2307 <member name="M:MbUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object)">
2308 <summary>Asserts that an object is not an instance of a given type.</summary>
2309 <param name="expected">The expected Type</param>
2310 <param name="actual">The object being examined</param>
2311 </member>
2312 <member name="M:MbUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String)">
2313 <summary>Asserts that an object is not an instance of a given type.</summary>
2314 <param name="expected">The expected Type</param>
2315 <param name="actual">The object being examined</param>
2316 <param name="message">A message to display in case of failure</param>
2317 </member>
2318 <member name="M:MbUnit.Framework.Assert.IsNotNull(System.Object,System.String,System.Object[])">
2319 <summary>Verifies that the given <see cref="T:System.Object" /> is not null. If it is null, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" /></summary>
2320 <param name="anObject">The <see cref="T:System.Object" /> to test</param>
2321 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2322 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2323 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="anObject" /> is null</exception>
2324 </member>
2325 <member name="M:MbUnit.Framework.Assert.IsNotNull(System.Object,System.String)">
2326 <summary>Verifies that the given <see cref="T:System.Object" /> is not null. If it is null, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
2327 <param name="anObject">The <see cref="T:System.Object" /> to test</param>
2328 <param name="message">The message to include if the test fails</param>
2329 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="anObject" /> is null</exception>
2330 </member>
2331 <member name="M:MbUnit.Framework.Assert.IsNotNull(System.Object)">
2332 <summary>Verifies that the given <see cref="T:System.Object" /> is not null. If it is null, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown</summary>
2333 <param name="anObject">The <see cref="T:System.Object" /> to test</param>
2334 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="anObject" /> is null</exception>
2335 </member>
2336 <member name="M:MbUnit.Framework.Assert.IsNull(System.Object,System.String,System.Object[])">
2337 <summary>Verifies that the given <see cref="T:System.Object" /> is null. If it is not null, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" /></summary>
2338 <param name="anObject">The <see cref="T:System.Object" /> to test</param>
2339 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2340 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2341 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="anObject" /> is not null</exception>
2342 </member>
2343 <member name="M:MbUnit.Framework.Assert.IsNull(System.Object,System.String)">
2344 <summary>Verifies that the given <see cref="T:System.Object" /> is null. If it is not null, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
2345 <param name="anObject">The <see cref="T:System.Object" /> to test</param>
2346 <param name="message">The message to include if the test fails</param>
2347 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="anObject" /> is not null</exception>
2348 </member>
2349 <member name="M:MbUnit.Framework.Assert.IsNull(System.Object)">
2350 <summary>Verifies that the given <see cref="T:System.Object" /> is null. If it is not null, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown</summary>
2351 <param name="anObject">The <see cref="T:System.Object" /> to test</param>
2352 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="anObject" /> is not null</exception>
2353 </member>
2354 <member name="M:MbUnit.Framework.Assert.IsTrue(System.Boolean,System.String,System.Object[])">
2355 <summary>Asserts that a <paramref name="condition" /> is true. If false, the method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])">String.Format</see>.</summary>
2356 <param name="condition">The evaluated condition</param>
2357 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2358 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2359 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown when <paramref name="condition" /> is not true. </exception>
2360 </member>
2361 <member name="M:MbUnit.Framework.Assert.IsTrue(System.Boolean,System.String)">
2362 <summary>Asserts that a <paramref name="condition" /> is true. If false, the method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with the given <paramref name="message" />.</summary>
2363 <param name="condition">The evaluated condition</param>
2364 <param name="message">The message printed out upon failure</param>
2365 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown when <paramref name="condition" /> is not true.</exception>
2366 </member>
2367 <member name="M:MbUnit.Framework.Assert.IsTrue(System.Boolean)">
2368 <summary>Asserts that a <paramref name="condition" /> is true. If false, the method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with no explanatory message.</summary>
2369 <param name="condition">The evaluated condition</param>
2370 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="condition" /> is not true. </exception>
2371 </member>
2372 <member name="M:MbUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String,System.Object[])">
2373 <summary>Verifies that for two integers, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="message" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2374 <param name="arg1">An integer</param>
2375 <param name="arg2">An integer</param>
2376 <param name="message">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2377 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2378 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2379 </member>
2380 <member name="M:MbUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String)">
2381 <summary>Verifies that for two integers, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2382 <param name="arg1">An integer</param>
2383 <param name="arg2">An integer</param>
2384 <param name="message">The message printed out upon failure</param>
2385 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2386 </member>
2387 <member name="M:MbUnit.Framework.Assert.Less(System.Int32,System.Int32)">
2388 <summary>Verifies that for two integers, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2389 <param name="arg1">An integer</param>
2390 <param name="arg2">An integer</param>
2391 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2392 </member>
2393 <member name="M:MbUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String,System.Object[])">
2394 <summary>Verifies that for two <see cref="T:System.UInt32">unsigned integers</see>, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="message" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2395 <param name="arg1">An <see cref="T:System.UInt32">unsigned integer</see></param>
2396 <param name="arg2">An <see cref="T:System.UInt32">unsigned integer</see></param>
2397 <param name="message">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2398 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2399 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2400 </member>
2401 <member name="M:MbUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String)">
2402 <summary>Verifies that for two <see cref="T:System.UInt32">unsigned integers</see>, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2403 <param name="arg1">An <see cref="T:System.UInt32">unsigned integer</see></param>
2404 <param name="arg2">An <see cref="T:System.UInt32">unsigned integer</see></param>
2405 <param name="message">The message printed out upon failure</param>
2406 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2407 </member>
2408 <member name="M:MbUnit.Framework.Assert.Less(System.UInt32,System.UInt32)">
2409 <summary>Verifies that for two <see cref="T:System.UInt32">unsigned integers</see>, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2410 <param name="arg1">An <see cref="T:System.UInt32">unsigned integer</see></param>
2411 <param name="arg2">An <see cref="T:System.UInt32">unsigned integer</see></param>
2412 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2413 </member>
2414 <member name="M:MbUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String,System.Object[])">
2415 <summary>Verifies that for two <see cref="T:System.Decimal">128-bit integers</see>, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="message" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2416 <param name="arg1">A <see cref="T:System.Decimal">128-bit integer</see></param>
2417 <param name="arg2">A <see cref="T:System.Decimal">128-bit integer</see></param>
2418 <param name="message">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2419 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2420 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2421 </member>
2422 <member name="M:MbUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String)">
2423 <summary>Verifies that for two <see cref="T:System.Decimal">128-bit integers</see>, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2424 <param name="arg1">A <see cref="T:System.Decimal">128-bit integer</see></param>
2425 <param name="arg2">A <see cref="T:System.Decimal">128-bit integer</see></param>
2426 <param name="message">The message printed out upon failure</param>
2427 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2428 </member>
2429 <member name="M:MbUnit.Framework.Assert.Less(System.Decimal,System.Decimal)">
2430 <summary>Verifies that for two <see cref="T:System.Decimal">128-bit integers</see>, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2431 <param name="arg1">A <see cref="T:System.Decimal">128-bit integer</see></param>
2432 <param name="arg2">A <see cref="T:System.Decimal">128-bit integer</see></param>
2433 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2434 </member>
2435 <member name="M:MbUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String,System.Object[])">
2436 <summary>Verifies that for two <see cref="T:System.Int64">long integers</see>, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="message" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2437 <param name="arg1">A <see cref="T:System.Int64">long integer</see></param>
2438 <param name="arg2">A <see cref="T:System.Int64">long integer</see></param>
2439 <param name="message">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2440 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2441 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2442 </member>
2443 <member name="M:MbUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String)">
2444 <summary>Verifies that for two <see cref="T:System.Int64">long integers</see>, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2445 <param name="arg1">A <see cref="T:System.Int64">long integer</see></param>
2446 <param name="arg2">A <see cref="T:System.Int64">long integer</see></param>
2447 <param name="message">The message printed out upon failure</param>
2448 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2449 </member>
2450 <member name="M:MbUnit.Framework.Assert.Less(System.Int64,System.Int64)">
2451 <summary>Verifies that for two <see cref="T:System.Int64">long integers</see>, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2452 <param name="arg1">A <see cref="T:System.Int64">long integer</see></param>
2453 <param name="arg2">A <see cref="T:System.Int64">long integer</see></param>
2454 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2455 </member>
2456 <member name="M:MbUnit.Framework.Assert.Less(System.Double,System.Double,System.String,System.Object[])">
2457 <summary>Verifies that for two <see cref="T:System.Double">doubles</see>, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="message" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2458 <param name="arg1">A <see cref="T:System.Double">double</see></param>
2459 <param name="arg2">A <see cref="T:System.Double">double</see></param>
2460 <param name="message">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2461 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2462 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2463 </member>
2464 <member name="M:MbUnit.Framework.Assert.Less(System.Double,System.Double,System.String)">
2465 <summary>Verifies that for two <see cref="T:System.Double">doubles</see>, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2466 <param name="arg1">A <see cref="T:System.Double">double</see></param>
2467 <param name="arg2">A <see cref="T:System.Double">double</see></param>
2468 <param name="message">The message printed out upon failure</param>
2469 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2470 </member>
2471 <member name="M:MbUnit.Framework.Assert.Less(System.Double,System.Double)">
2472 <summary>Verifies that for two <see cref="T:System.Double">doubles</see>, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2473 <param name="arg1">A <see cref="T:System.Double">double</see></param>
2474 <param name="arg2">A <see cref="T:System.Double">double</see></param>
2475 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2476 </member>
2477 <member name="M:MbUnit.Framework.Assert.Less(System.Single,System.Single,System.String,System.Object[])">
2478 <summary>Verifies that for two <see cref="T:System.Single">floats</see>, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="message" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2479 <param name="arg1">A <see cref="T:System.Single">float</see></param>
2480 <param name="arg2">A <see cref="T:System.Single">float</see></param>
2481 <param name="message">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2482 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2483 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2484 </member>
2485 <member name="M:MbUnit.Framework.Assert.Less(System.Single,System.Single,System.String)">
2486 <summary>Verifies that for two <see cref="T:System.Single">floats</see>, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2487 <param name="arg1">A <see cref="T:System.Single">float</see></param>
2488 <param name="arg2">A <see cref="T:System.Single">float</see></param>
2489 <param name="message">The message printed out upon failure</param>
2490 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2491 </member>
2492 <member name="M:MbUnit.Framework.Assert.Less(System.Single,System.Single)">
2493 <summary>Verifies that for two <see cref="T:System.Single">floats</see>, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2494 <param name="arg1">A <see cref="T:System.Single">float</see></param>
2495 <param name="arg2">A <see cref="T:System.Single">float</see></param>
2496 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2497 </member>
2498 <member name="M:MbUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String,System.Object[])">
2499 <summary>Verifies that for two objects derived from <see cref="T:System.IComparable" />, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="message" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2500 <param name="arg1">An object derived from <see cref="T:System.IComparable" /></param>
2501 <param name="arg2">An object derived from <see cref="T:System.IComparable" /></param>
2502 <param name="message">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2503 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2504 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2505 <exception cref="T:System.ArgumentException"> Thrown if <paramref name="arg1" /> and <paramref name="arg2" /> are not of the same type</exception>
2506 </member>
2507 <member name="M:MbUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String)">
2508 <summary>Verifies that for two objects derived from <see cref="T:System.IComparable" />, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2509 <param name="arg1">An object derived from <see cref="T:System.IComparable" /></param>
2510 <param name="arg2">An object derived from <see cref="T:System.IComparable" /></param>
2511 <param name="message">The message printed out upon failure</param>
2512 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2513 <exception cref="T:System.ArgumentException"> Thrown if <paramref name="arg1" /> and <paramref name="arg2" /> are not of the same type</exception>
2514 </member>
2515 <member name="M:MbUnit.Framework.Assert.Less(System.IComparable,System.IComparable)">
2516 <summary>Verifies that for two objects derived from <see cref="T:System.IComparable" />, <paramref name="arg1" /> is strictly less than <paramref name="arg2" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2517 <param name="arg1">An object derived from <see cref="T:System.IComparable" /></param>
2518 <param name="arg2">An object derived from <see cref="T:System.IComparable" /></param>
2519 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="arg1" /> is equal to or greater than <paramref name="arg2" /> or if either value is null.</exception>
2520 <exception cref="T:System.ArgumentException"> Thrown if <paramref name="arg1" /> and <paramref name="arg2" /> are not of the same type</exception>
2521 </member>
2522 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int32,System.Int32,System.String,System.Object[])">
2523 <summary>Verifies that for two integers, <paramref name="left" /> is strictly less than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2524 <param name="left">An integer</param>
2525 <param name="right">An integer</param>
2526 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2527 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2528 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2529 </member>
2530 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int16,System.Int16)">
2531 <summary>Verifies that for two shorts, <paramref name="left" /> is less than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2532 <param name="left">A <see cref="T:System.Int16">short integer</see> value</param>
2533 <param name="right">A <see cref="T:System.Int16">short integer</see> value</param>
2534 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2535 </member>
2536 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int16,System.Int16,System.String)">
2537 <summary>Verifies that for two shorts, <paramref name="left" /> is less than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2538 <param name="left">A <see cref="T:System.Int16">short integer</see> value</param>
2539 <param name="right">A <see cref="T:System.Int16">short integer</see> value</param>
2540 <param name="message">The message printed out upon failure</param>
2541 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2542 </member>
2543 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int16,System.Int16,System.String,System.Object[])">
2544 <summary>Verifies that for two shorts, <paramref name="left" /> is strictly less than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2545 <param name="left">A <see cref="T:System.Int16">short integer</see> value</param>
2546 <param name="right">A <see cref="T:System.Int16">short integer</see> value</param>
2547 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2548 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2549 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2550 </member>
2551 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Byte,System.Byte)">
2552 <summary>Verifies that for two <see cref="T:System.Byte" />s, <paramref name="left" /> is less than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2553 <param name="left">A <see cref="T:System.Byte" /> value (0 to 255)</param>
2554 <param name="right">A <see cref="T:System.Byte" /> value (0 to 255)</param>
2555 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2556 </member>
2557 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Byte,System.Byte,System.String)">
2558 <summary>Verifies that for two <see cref="T:System.Byte" />s, <paramref name="left" /> is less than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2559 <param name="left">A <see cref="T:System.Byte" /> value (0 to 255)</param>
2560 <param name="right">A <see cref="T:System.Byte" /> value (0 to 255)</param>
2561 <param name="message">The message printed out upon failure</param>
2562 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2563 </member>
2564 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Byte,System.Byte,System.String,System.Object[])">
2565 <summary>Verifies that for two <see cref="T:System.Byte" />s, <paramref name="left" /> is less than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2566 <param name="left">A <see cref="T:System.Byte" /> value (0 to 255)</param>
2567 <param name="right">A <see cref="T:System.Byte" /> value (0 to 255)</param>
2568 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2569 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2570 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2571 </member>
2572 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int64,System.Int64)">
2573 <summary>Verifies that for two <see cref="T:System.Int64">long integer</see>s, <paramref name="left" /> is less or equal to than <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2574 <param name="left">A <see cref="T:System.Int64">long integer</see></param>
2575 <param name="right">A <see cref="T:System.Int64">long integer</see></param>
2576 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2577 </member>
2578 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int64,System.Int64,System.String)">
2579 <summary>Verifies that for two <see cref="T:System.Int64">long integer</see>s, <paramref name="left" /> is less than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2580 <param name="left">A <see cref="T:System.Int64">long integer</see></param>
2581 <param name="right">A <see cref="T:System.Int64">long integer</see></param>
2582 <param name="message">The message printed out upon failure</param>
2583 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2584 </member>
2585 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int64,System.Int64,System.String,System.Object[])">
2586 <summary>Verifies that for two <see cref="T:System.Int64">long integer</see>s, <paramref name="left" /> is less than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2587 <param name="left">A <see cref="T:System.Int64">long integer</see></param>
2588 <param name="right">A <see cref="T:System.Int64">long integer</see></param>
2589 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2590 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2591 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2592 </member>
2593 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Double,System.Double)">
2594 <summary>Verifies that for two doubles, <paramref name="left" /> is less than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2595 <param name="left">A double</param>
2596 <param name="right">A double</param>
2597 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2598 </member>
2599 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Double,System.Double,System.String)">
2600 <summary>Verifies that for two doubles, <paramref name="left" /> is less than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2601 <param name="left">A double</param>
2602 <param name="right">A double</param>
2603 <param name="message">The message printed out upon failure</param>
2604 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2605 </member>
2606 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Double,System.Double,System.String,System.Object[])">
2607 <summary>Verifies that for two doubles, <paramref name="left" /> is less than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2608 <param name="left">A double</param>
2609 <param name="right">A double</param>
2610 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2611 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2612 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2613 </member>
2614 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Single,System.Single)">
2615 <summary>Verifies that for two floats, <paramref name="left" /> is less than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2616 <param name="left">A float</param>
2617 <param name="right">A float</param>
2618 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2619 </member>
2620 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Single,System.Single,System.String)">
2621 <summary>Verifies that for two floats, <paramref name="left" /> is less than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2622 <param name="left">A float</param>
2623 <param name="right">A float</param>
2624 <param name="message">The message printed out upon failure</param>
2625 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2626 </member>
2627 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Single,System.Single,System.String,System.Object[])">
2628 <summary>Verifies that for two floats, <paramref name="left" /> is less than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2629 <param name="left">A float</param>
2630 <param name="right">A float</param>
2631 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2632 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2633 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2634 </member>
2635 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.IComparable,System.IComparable)">
2636 <summary>Verifies that for two objects derived from <see cref="T:System.IComparable" />, <paramref name="left" /> is less than or equal to <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2637 <param name="left">An object derived from <see cref="T:System.IComparable" /></param>
2638 <param name="right">An object derived from <see cref="T:System.IComparable" /></param>
2639 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2640 <exception cref="T:System.ArgumentException"> Thrown if <paramref name="left" /> and <paramref name="right" /> are not of the same type</exception>
2641 </member>
2642 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.IComparable,System.IComparable,System.String)">
2643 <summary>Verifies that for two objects derived from <see cref="T:System.IComparable" />, <paramref name="left" /> is less than or equal to <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2644 <param name="left">An object derived from <see cref="T:System.IComparable" /></param>
2645 <param name="right">An object derived from <see cref="T:System.IComparable" /></param>
2646 <param name="message">The message printed out upon failure</param>
2647 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2648 <exception cref="T:System.ArgumentException"> Thrown if <paramref name="left" /> and <paramref name="right" /> are not of the same type</exception>
2649 </member>
2650 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.IComparable,System.IComparable,System.String,System.Object[])">
2651 <summary>Verifies that for two objects derived from <see cref="T:System.IComparable" />, <paramref name="left" /> is less than or equal to <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2652 <param name="left">An object derived from <see cref="T:System.IComparable" /></param>
2653 <param name="right">An object derived from <see cref="T:System.IComparable" /></param>
2654 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2655 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2656 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2657 <exception cref="T:System.ArgumentException"> Thrown if <paramref name="left" /> and <paramref name="right" /> are not of the same type</exception>
2658 </member>
2659 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int32,System.Int32)">
2660 <summary>Verifies that for two integers, <paramref name="left" /> is less than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2661 <param name="left">An integer</param>
2662 <param name="right">An integer</param>
2663 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2664 </member>
2665 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int32,System.Int32,System.String)">
2666 <summary>Verifies that for two integers, <paramref name="left" /> is less than or equal to <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2667 <param name="left">An integer</param>
2668 <param name="right">An integer</param>
2669 <param name="message">The message printed out upon failure</param>
2670 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is greater than <paramref name="right" /> or if either value is null.</exception>
2671 </member>
2672 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int32,System.Int32)">
2673 <summary>Verifies that for two integers, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2674 <param name="left">An integer</param>
2675 <param name="right">An integer</param>
2676 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2677 </member>
2678 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int32,System.Int32,System.String)">
2679 <summary>Verifies that for two integers, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2680 <param name="left">An integer</param>
2681 <param name="right">An integer</param>
2682 <param name="message">The message printed out upon failure</param>
2683 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2684 </member>
2685 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int32,System.Int32,System.String,System.Object[])">
2686 <summary>Verifies that for two integers, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2687 <param name="left">An integer</param>
2688 <param name="right">An integer</param>
2689 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2690 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2691 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2692 </member>
2693 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int16,System.Int16)">
2694 <summary>Verifies that for two shorts, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2695 <param name="left">A <see cref="T:System.Int16">short integer</see> value</param>
2696 <param name="right">A <see cref="T:System.Int16">short integer</see> value</param>
2697 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2698 </member>
2699 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int16,System.Int16,System.String)">
2700 <summary>Verifies that for two shorts, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2701 <param name="left">A <see cref="T:System.Int16">short integer</see> value</param>
2702 <param name="right">A <see cref="T:System.Int16">short integer</see> value</param>
2703 <param name="message">The message printed out upon failure</param>
2704 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2705 </member>
2706 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int16,System.Int16,System.String,System.Object[])">
2707 <summary>Verifies that for two shorts, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2708 <param name="left">A <see cref="T:System.Int16">short integer</see> value</param>
2709 <param name="right">A <see cref="T:System.Int16">short integer</see> value</param>
2710 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2711 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2712 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2713 </member>
2714 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Byte,System.Byte)">
2715 <summary>Verifies that for two <see cref="T:System.Byte" />s, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2716 <param name="left">A <see cref="T:System.Byte" /> value (0 to 255)</param>
2717 <param name="right">A <see cref="T:System.Byte" /> value (0 to 255)</param>
2718 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2719 </member>
2720 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Byte,System.Byte,System.String)">
2721 <summary>Verifies that for two <see cref="T:System.Byte" />s, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2722 <param name="left">A <see cref="T:System.Byte" /> value (0 to 255)</param>
2723 <param name="right">A <see cref="T:System.Byte" /> value (0 to 255)</param>
2724 <param name="message">The message printed out upon failure</param>
2725 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2726 </member>
2727 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Byte,System.Byte,System.String,System.Object[])">
2728 <summary>Verifies that for two <see cref="T:System.Byte" />s, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2729 <param name="left">A <see cref="T:System.Byte" /> value (0 to 255)</param>
2730 <param name="right">A <see cref="T:System.Byte" /> value (0 to 255)</param>
2731 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2732 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2733 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2734 </member>
2735 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int64,System.Int64)">
2736 <summary>Verifies that for two <see cref="T:System.Int64">long integer</see>s, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2737 <param name="left">A <see cref="T:System.Int64">long integer</see></param>
2738 <param name="right">A <see cref="T:System.Int64">long integer</see></param>
2739 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2740 </member>
2741 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int64,System.Int64,System.String)">
2742 <summary>Verifies that for two <see cref="T:System.Int64">long integer</see>s, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2743 <param name="left">A <see cref="T:System.Int64">long integer</see></param>
2744 <param name="right">A <see cref="T:System.Int64">long integer</see></param>
2745 <param name="message">The message printed out upon failure</param>
2746 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2747 </member>
2748 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int64,System.Int64,System.String,System.Object[])">
2749 <summary>Verifies that for two <see cref="T:System.Int64">long integer</see>s, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2750 <param name="left">A <see cref="T:System.Int64">long integer</see></param>
2751 <param name="right">A <see cref="T:System.Int64">long integer</see></param>
2752 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2753 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2754 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2755 </member>
2756 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Double,System.Double)">
2757 <summary>Verifies that for two doubles, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2758 <param name="left">A double</param>
2759 <param name="right">A double</param>
2760 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2761 </member>
2762 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Double,System.Double,System.String)">
2763 <summary>Verifies that for two doubles, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2764 <param name="left">A double</param>
2765 <param name="right">A double</param>
2766 <param name="message">The message printed out upon failure</param>
2767 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2768 </member>
2769 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Double,System.Double,System.String,System.Object[])">
2770 <summary>Verifies that for two doubles, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2771 <param name="left">A double</param>
2772 <param name="right">A double</param>
2773 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2774 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2775 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2776 </member>
2777 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Single,System.Single)">
2778 <summary>Verifies that for two floats, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2779 <param name="left">A float</param>
2780 <param name="right">A float</param>
2781 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2782 </member>
2783 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Single,System.Single,System.String)">
2784 <summary>Verifies that for two floats, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2785 <param name="left">A float</param>
2786 <param name="right">A float</param>
2787 <param name="message">The message printed out upon failure</param>
2788 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2789 </member>
2790 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Single,System.Single,System.String,System.Object[])">
2791 <summary>Verifies that for two floats, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2792 <param name="left">A float</param>
2793 <param name="right">A float</param>
2794 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2795 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2796 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2797 </member>
2798 <member name="M:MbUnit.Framework.Assert.LowerThan(System.IComparable,System.IComparable)">
2799 <summary>Verifies that for two objects derived from <see cref="T:System.IComparable" />, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2800 <param name="left">An object derived from <see cref="T:System.IComparable" /></param>
2801 <param name="right">An object derived from <see cref="T:System.IComparable" /></param>
2802 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2803 <exception cref="T:System.ArgumentException"> Thrown if <paramref name="left" /> and <paramref name="right" /> are not of the same type</exception>
2804 </member>
2805 <member name="M:MbUnit.Framework.Assert.LowerThan(System.IComparable,System.IComparable,System.String)">
2806 <summary>Verifies that for two objects derived from <see cref="T:System.IComparable" />, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2807 <param name="left">An object derived from <see cref="T:System.IComparable" /></param>
2808 <param name="right">An object derived from <see cref="T:System.IComparable" /></param>
2809 <param name="message">The message printed out upon failure</param>
2810 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2811 <exception cref="T:System.ArgumentException"> Thrown if <paramref name="left" /> and <paramref name="right" /> are not of the same type</exception>
2812 </member>
2813 <member name="M:MbUnit.Framework.Assert.LowerThan(System.IComparable,System.IComparable,System.String,System.Object[])">
2814 <summary>Verifies that for two objects derived from <see cref="T:System.IComparable" />, <paramref name="left" /> is strictly less than <paramref name="right" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
2815 <param name="left">An object derived from <see cref="T:System.IComparable" /></param>
2816 <param name="right">An object derived from <see cref="T:System.IComparable" /></param>
2817 <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
2818 <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
2819 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="left" /> is equal to or greater than <paramref name="right" /> or if either value is null.</exception>
2820 <exception cref="T:System.ArgumentException"> Thrown if <paramref name="left" /> and <paramref name="right" /> are not of the same type</exception>
2821 </member>
2822 <member name="M:MbUnit.Framework.Assert.NotBetween(System.Int32,System.Int32,System.Int32)">
2823 <summary>Verifies that for three integers, <paramref name="test" /> is not in the range defined by or equal to one of <paramref name="left" /> and <paramref name="right" />. If it is in the defined range, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2824 <param name="test">The integer being tested</param>
2825 <param name="left">An integer marking one of end of a range</param>
2826 <param name="right">An integer marking the other end of a range</param>
2827 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
2828 </member>
2829 <member name="M:MbUnit.Framework.Assert.NotBetween(System.Int16,System.Int16,System.Int16)">
2830 <summary>Verifies that for three <see cref="T:System.Int16">short integers</see>, <paramref name="test" /> is not in the range defined by or equal to one of <paramref name="left" /> and <paramref name="right" />. If it is in the defined range, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2831 <param name="test">The <see cref="T:System.Int16">short integer</see> being tested</param>
2832 <param name="left">A <see cref="T:System.Int16">short integer</see> marking one of end of a range</param>
2833 <param name="right">A <see cref="T:System.Int16">short integer</see> marking the other end of a range</param>
2834 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
2835 </member>
2836 <member name="M:MbUnit.Framework.Assert.NotBetween(System.Byte,System.Byte,System.Byte)">
2837 <summary>Verifies that for three <see cref="T:System.Byte">bytes</see> (0 to 255), <paramref name="test" /> is not in the range defined by or equal to one of <paramref name="left" /> and <paramref name="right" />. If it is in the defined range, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2838 <param name="test">The value between 0 and 255 being tested</param>
2839 <param name="left">A value between 0 and 255 marking one of end of a range</param>
2840 <param name="right">A value between 0 and 255 marking the other end of a range</param>
2841 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
2842 </member>
2843 <member name="M:MbUnit.Framework.Assert.NotBetween(System.Int64,System.Int64,System.Int64)">
2844 <summary>Verifies that for three <see cref="T:System.Int64">long integer</see>s, <paramref name="test" /> is not in the range defined by or equal to one of <paramref name="left" /> and <paramref name="right" />. If it is in the defined range, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2845 <param name="test">The <see cref="T:System.Int64">long integer</see> being tested</param>
2846 <param name="left">A <see cref="T:System.Int64">long integer</see> marking one of end of a range</param>
2847 <param name="right">A <see cref="T:System.Int64">long integer</see> marking the other end of a range</param>
2848 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
2849 </member>
2850 <member name="M:MbUnit.Framework.Assert.NotBetween(System.Double,System.Double,System.Double)">
2851 <summary>Verifies that for three doubles, <paramref name="test" /> is not in the range defined by or equal to one of <paramref name="left" /> and <paramref name="right" />. If it is in the defined range, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2852 <param name="test">The double being tested</param>
2853 <param name="left">An double marking one of end of a range</param>
2854 <param name="right">An double marking the other end of a range</param>
2855 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
2856 </member>
2857 <member name="M:MbUnit.Framework.Assert.NotBetween(System.Single,System.Single,System.Single)">
2858 <summary>Verifies that for three floats, <paramref name="test" /> is not in the range defined by or equal to one of <paramref name="left" /> and <paramref name="right" />. If it is in the defined range, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2859 <param name="test">The float being tested</param>
2860 <param name="left">An float marking one of end of a range</param>
2861 <param name="right">An float marking the other end of a range</param>
2862 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
2863 </member>
2864 <member name="M:MbUnit.Framework.Assert.NotBetween(System.IComparable,System.IComparable,System.IComparable)">
2865 <summary>Verifies that for three objects derived from <see cref="T:System.IComparable" />, <paramref name="test" /> is not in the range defined by or equal to one of <paramref name="left" /> and <paramref name="right" />. If it is in the defined range, a <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2866 <param name="test">The object derived from <see cref="T:System.IComparable" /> being tested</param>
2867 <param name="left">The object derived from <see cref="T:System.IComparable" /> marking one of end of a range</param>
2868 <param name="right">The object derived from <see cref="T:System.IComparable" /> marking the other end of a range</param>
2869 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is within the range defined by <paramref name="left" /> or <paramref name="right" /> or if one of the three values is null.</exception>
2870 <exception cref="T:System.ArgumentException"> Thrown if <paramref name="test" />, <paramref name="left" /> and <paramref name="right" /> are not of the same type</exception>
2871 </member>
2872 <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IDictionary,System.String)">
2873 <summary>Verifies that <paramref name="dic" />, which derives from <see cref="T:System.Collections.IDictionary" />, does not contains an item with the key value of <paramref name="test" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2874 <param name="test">The key value that <paramref name="dic" /> should not contain</param>
2875 <param name="dic">The <see cref="T:System.Collections.IDictionary" /> object that should not contain <paramref name="test" /></param>
2876 <param name="message">The message printed out upon failure</param>
2877 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is contained in <paramref name="dic" /> or either object is null.</exception>
2878 </member>
2879 <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IDictionary)">
2880 <summary>Verifies that <paramref name="dic" />, which derives from <see cref="T:System.Collections.IDictionary" />, does not contain an item with the key value of <paramref name="test" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2881 <param name="test">The key value that <paramref name="dic" /> should not contain</param>
2882 <param name="dic">The <see cref="T:System.Collections.IDictionary" /> object that should not contain <paramref name="test" /></param>
2883 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is contained in <paramref name="dic" /> or either object is null.</exception>
2884 </member>
2885 <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IList,System.String)">
2886 <summary>Verifies that <paramref name="list" />, which derives from <see cref="T:System.Collections.IList" />, does not contain a value of <paramref name="test" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a given <paramref name="message" />.</summary>
2887 <param name="test">The value that <paramref name="list" /> should not contain</param>
2888 <param name="list">The <see cref="T:System.Collections.IList" /> object that should not contain <paramref name="test" /></param>
2889 <param name="message">The message to display on failure</param>
2890 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is contained in <paramref name="list" /> or either object is null.</exception>
2891 </member>
2892 <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IList)">
2893 <summary>Verifies that <paramref name="list" />, which derives from <see cref="T:System.Collections.IList" />, does not contains a value of <paramref name="test" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2894 <param name="test">The value that <paramref name="list" /> should not contain</param>
2895 <param name="list">The <see cref="T:System.Collections.IList" /> object that should not contain <paramref name="test" /></param>
2896 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is contained in <paramref name="list" /> or either object is null.</exception>
2897 </member>
2898 <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IEnumerable,System.String)">
2899 <summary>Verifies that <paramref name="enumerable" />, which derives from <see cref="T:System.Collections.IEnumerable" />, does not contain a value of <paramref name="test" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" />.</summary>
2900 <param name="test">The value that <paramref name="enumerable" /> should not contain</param>
2901 <param name="enumerable">The <see cref="T:System.Collections.IEnumerable" /> object that should not contain <paramref name="test" /></param>
2902 <param name="message">The message given upon failure</param>
2903 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is contained in <paramref name="enumerable" /> or if either object is null.</exception>
2904 </member>
2905 <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IEnumerable)">
2906 <summary>Verifies that <paramref name="enumerable" />, which derives from <see cref="T:System.Collections.IEnumerable" />, does not contain a value of <paramref name="test" />. If this is not the case, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2907 <param name="test">The value that <paramref name="enumerable" /> should not contain</param>
2908 <param name="enumerable">The <see cref="T:System.Collections.IEnumerable" /> object that should not contain <paramref name="test" /></param>
2909 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"> Thrown if <paramref name="test" /> is contained in <paramref name="enumerable" /> or if either object is null.</exception>
2910 </member>
2911 <member name="M:MbUnit.Framework.Assert.ReferenceEquals(System.Object,System.Object)">
2912 <summary>Overrides the default <see cref="M:System.Object.ReferenceEquals(System.Object,System.Object)" /> method inherited from <see cref="T:System.Object" /> to throw an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> instead. This is to ensure that there is no mistake in calling this function as part of an Assert in your tests. Use <see cref="M:MbUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String)">AreSame()</see> instead or one of its overloads.</summary>
2913 <param name="a">The first <see cref="T:System.Object" /> to compare</param>
2914 <param name="b">The second <see cref="T:System.Object" /> to compare</param>
2915 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Always thrown as this method should not be used.</exception>
2916 </member>
2917 <member name="M:MbUnit.Framework.Assert.ResetAssertCount">
2918 <summary>Resets <see cref="P:MbUnit.Framework.Assert.AssertCount" /> to 0</summary>
2919 </member>
2920 <member name="T:MbUnit.Framework.AuthorAttribute">
2921 <summary>Associates the author's name and email address with a test fixture, test method, test parameter or other test component.</summary>
2922 </member>
2923 <member name="P:MbUnit.Framework.AuthorAttribute.EMail">
2924 <summary>Gets or sets the author's email address or empty string if none.</summary>
2925 </member>
2926 <member name="P:MbUnit.Framework.AuthorAttribute.HomePage">
2927 <summary>Gets or sets the author's homepage or empty string if none.</summary>
2928 </member>
2929 <member name="P:MbUnit.Framework.AuthorAttribute.Name">
2930 <summary>Gets or sets the author's name.</summary>
2931 </member>
2932 <member name="M:MbUnit.Framework.AuthorAttribute.ToString">
2933 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
2934 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
2935 </member>
2936 <member name="T:MbUnit.Framework.ClassTester">
2937 <summary>Used in strategies for testing classes and tests for null arguments. For more info, see <a href="http://blog.dotnetwiki.org/TestingTheArgumentNullExceptionWithMbUnit.aspx">this article</a></summary>
2938 </member>
2939 <member name="T:MbUnit.Framework.CollectionAssert">
2940 <summary>Assertion helper for the <see cref="T:System.Collections.ICollection" /> class. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
2941 </member>
2942 <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.ICollection,System.Type)">
2943 <summary>Asserts that all items contained in collection are of the type specified by expectedType.</summary>
2944 <param name="collection">ICollection of objects to be considered</param>
2945 <param name="expectedType">System.Type that all objects in collection must be instances of</param>
2946 </member>
2947 <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.ICollection,System.Type,System.String)">
2948 <summary>Asserts that all items contained in collection are of the type specified by expectedType.</summary>
2949 <param name="collection">ICollection of objects to be considered</param>
2950 <param name="expectedType">System.Type that all objects in collection must be instances of</param>
2951 <param name="message">The message that will be displayed on failure</param>
2952 </member>
2953 <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.ICollection,System.Type,System.String,System.Object[])">
2954 <summary>Asserts that all items contained in collection are of the type specified by expectedType.</summary>
2955 <param name="collection">ICollection of objects to be considered</param>
2956 <param name="expectedType">System.Type that all objects in collection must be instances of</param>
2957 <param name="message">The message that will be displayed on failure</param>
2958 <param name="args">Arguments to be used in formatting the message</param>
2959 </member>
2960 <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.ICollection)">
2961 <summary>Asserts that all items contained in collection are not equal to null.</summary>
2962 <param name="collection">ICollection of objects to be considered</param>
2963 </member>
2964 <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.ICollection,System.String)">
2965 <summary>Asserts that all items contained in collection are not equal to null.</summary>
2966 <param name="collection">ICollection of objects to be considered</param>
2967 <param name="message">The message that will be displayed on failure</param>
2968 </member>
2969 <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.ICollection,System.String,System.Object[])">
2970 <summary>Asserts that all items contained in collection are not equal to null.</summary>
2971 <param name="collection">ICollection of objects to be considered</param>
2972 <param name="message">The message that will be displayed on failure</param>
2973 <param name="args">Arguments to be used in formatting the message</param>
2974 </member>
2975 <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.ICollection)">
2976 <summary>Ensures that every object contained in collection exists within the collection once and only once.</summary>
2977 <param name="collection">ICollection of objects to be considered</param>
2978 </member>
2979 <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.ICollection,System.String)">
2980 <summary>Ensures that every object contained in collection exists within the collection once and only once.</summary>
2981 <param name="collection">ICollection of objects to be considered</param>
2982 <param name="message">The message that will be displayed on failure</param>
2983 </member>
2984 <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.ICollection,System.String,System.Object[])">
2985 <summary>Ensures that every object contained in collection exists within the collection once and only once.</summary>
2986 <param name="collection">ICollection of objects to be considered</param>
2987 <param name="message">The message that will be displayed on failure</param>
2988 <param name="args">Arguments to be used in formatting the message</param>
2989 </member>
2990 <member name="M:MbUnit.Framework.CollectionAssert.AreCountEqual(System.Collections.ICollection,System.Collections.ICollection)">
2991 <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.Count" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2992 <param name="expected">Instance containing the expected value.</param>
2993 <param name="actual">Instance containing the tested value.</param>
2994 </member>
2995 <member name="M:MbUnit.Framework.CollectionAssert.AreCountEqual(System.Int32,System.Collections.ICollection)">
2996 <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.Count" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2997 <param name="expected">Expected value.</param>
2998 <param name="actual">Instance containing the tested value.</param>
2999 </member>
3000 <member name="M:MbUnit.Framework.CollectionAssert.AreElementsEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)">
3001 <summary>Verifies that <paramref name="expected" /> and <paramref name="actual" /> are equal collections. Element count and element wize equality is verified.</summary>
3002 <param name="expected">Expected value.</param>
3003 <param name="actual">Instance containing the tested value.</param>
3004 </member>
3005 <member name="M:MbUnit.Framework.CollectionAssert.AreEqual(System.Collections.ICollection,System.Collections.ICollection)">
3006 <summary>Verifies that <paramref name="expected" /> and <paramref name="actual" /> are equal collections. Element count and element wize equality is verified.</summary>
3007 <param name="expected">Expected value.</param>
3008 <param name="actual">Instance containing the tested value.</param>
3009 </member>
3010 <member name="M:MbUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.ICollection,System.Collections.ICollection)">
3011 <summary>Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.</summary>
3012 <param name="expected">The first ICollection of objects to be considered</param>
3013 <param name="actual">The second ICollection of objects to be considered</param>
3014 </member>
3015 <member name="M:MbUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String)">
3016 <summary>Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.</summary>
3017 <param name="expected">The first ICollection of objects to be considered</param>
3018 <param name="actual">The second ICollection of objects to be considered</param>
3019 <param name="message">The message that will be displayed on failure</param>
3020 </member>
3021 <member name="M:MbUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
3022 <summary>Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.</summary>
3023 <param name="expected">The first ICollection of objects to be considered</param>
3024 <param name="actual">The second ICollection of objects to be considered</param>
3025 <param name="message">The message that will be displayed on failure</param>
3026 <param name="args">Arguments to be used in formatting the message</param>
3027 </member>
3028 <member name="M:MbUnit.Framework.CollectionAssert.AreIsSynchronizedEqual(System.Collections.ICollection,System.Collections.ICollection)">
3029 <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.IsSynchronized" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3030 <param name="expected">Instance containing the expected value.</param>
3031 <param name="actual">Instance containing the tested value.</param>
3032 </member>
3033 <member name="M:MbUnit.Framework.CollectionAssert.AreIsSynchronizedEqual(System.Boolean,System.Collections.ICollection)">
3034 <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.IsSynchronized" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3035 <param name="expected">Expected value.</param>
3036 <param name="actual">Instance containing the tested value.</param>
3037 </member>
3038 <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection)">
3039 <summary>Asserts that expected and actual are not exactly equal.</summary>
3040 <param name="expected">The first ICollection of objects to be considered</param>
3041 <param name="actual">The second ICollection of objects to be considered</param>
3042 </member>
3043 <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer)">
3044 <summary>Asserts that expected and actual are not exactly equal. If comparer is not null then it will be used to compare the objects.</summary>
3045 <param name="expected">The first ICollection of objects to be considered</param>
3046 <param name="actual">The second ICollection of objects to be considered</param>
3047 <param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
3048 </member>
3049 <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.String)">
3050 <summary>Asserts that expected and actual are not exactly equal.</summary>
3051 <param name="expected">The first ICollection of objects to be considered</param>
3052 <param name="actual">The second ICollection of objects to be considered</param>
3053 <param name="message">The message that will be displayed on failure</param>
3054 </member>
3055 <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer,System.String)">
3056 <summary>Asserts that expected and actual are not exactly equal. If comparer is not null then it will be used to compare the objects.</summary>
3057 <param name="expected">The first ICollection of objects to be considered</param>
3058 <param name="actual">The second ICollection of objects to be considered</param>
3059 <param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
3060 <param name="message">The message that will be displayed on failure</param>
3061 </member>
3062 <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
3063 <summary>Asserts that expected and actual are not exactly equal.</summary>
3064 <param name="expected">The first ICollection of objects to be considered</param>
3065 <param name="actual">The second ICollection of objects to be considered</param>
3066 <param name="message">The message that will be displayed on failure</param>
3067 <param name="args">Arguments to be used in formatting the message</param>
3068 </member>
3069 <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer,System.String,System.Object[])">
3070 <summary>Asserts that expected and actual are not exactly equal. If comparer is not null then it will be used to compare the objects.</summary>
3071 <param name="expected">The first ICollection of objects to be considered</param>
3072 <param name="actual">The second ICollection of objects to be considered</param>
3073 <param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
3074 <param name="message">The message that will be displayed on failure</param>
3075 <param name="args">Arguments to be used in formatting the message</param>
3076 </member>
3077 <member name="M:MbUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.ICollection,System.Collections.ICollection)">
3078 <summary>Asserts that expected and actual are not equivalent.</summary>
3079 <param name="expected">The first ICollection of objects to be considered</param>
3080 <param name="actual">The second ICollection of objects to be considered</param>
3081 </member>
3082 <member name="M:MbUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String)">
3083 <summary>Asserts that expected and actual are not equivalent.</summary>
3084 <param name="expected">The first ICollection of objects to be considered</param>
3085 <param name="actual">The second ICollection of objects to be considered</param>
3086 <param name="message">The message that will be displayed on failure</param>
3087 </member>
3088 <member name="M:MbUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
3089 <summary>Asserts that expected and actual are not equivalent.</summary>
3090 <param name="expected">The first ICollection of objects to be considered</param>
3091 <param name="actual">The second ICollection of objects to be considered</param>
3092 <param name="message">The message that will be displayed on failure</param>
3093 <param name="args">Arguments to be used in formatting the message</param>
3094 </member>
3095 <member name="M:MbUnit.Framework.CollectionAssert.AreSyncRootEqual(System.Collections.ICollection,System.Collections.ICollection)">
3096 <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.SyncRoot" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3097 <param name="expected">Instance containing the expected value.</param>
3098 <param name="actual">Instance containing the tested value.</param>
3099 </member>
3100 <member name="M:MbUnit.Framework.CollectionAssert.AreSyncRootEqual(System.Object,System.Collections.ICollection)">
3101 <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.SyncRoot" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3102 <param name="expected">Expected value.</param>
3103 <param name="actual">Instance containing the tested value.</param>
3104 </member>
3105 <member name="M:MbUnit.Framework.CollectionAssert.Contains(System.Collections.ICollection,System.Object)">
3106 <summary>Asserts that collection contains actual as an item.</summary>
3107 <param name="collection">ICollection of objects to be considered</param>
3108 <param name="actual">Object to be found within collection</param>
3109 </member>
3110 <member name="M:MbUnit.Framework.CollectionAssert.Contains(System.Collections.ICollection,System.Object,System.String)">
3111 <summary>Asserts that collection contains actual as an item.</summary>
3112 <param name="collection">ICollection of objects to be considered</param>
3113 <param name="actual">Object to be found within collection</param>
3114 <param name="message">The message that will be displayed on failure</param>
3115 </member>
3116 <member name="M:MbUnit.Framework.CollectionAssert.Contains(System.Collections.ICollection,System.Object,System.String,System.Object[])">
3117 <summary>Asserts that collection contains actual as an item.</summary>
3118 <param name="collection">ICollection of objects to be considered</param>
3119 <param name="actual">Object to be found within collection</param>
3120 <param name="message">The message that will be displayed on failure</param>
3121 <param name="args">Arguments to be used in formatting the message</param>
3122 </member>
3123 <member name="M:MbUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.ICollection,System.Object)">
3124 <summary>Asserts that collection does not contain actual as an item.</summary>
3125 <param name="collection">ICollection of objects to be considered</param>
3126 <param name="actual">Object that cannot exist within collection</param>
3127 </member>
3128 <member name="M:MbUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.ICollection,System.Object,System.String)">
3129 <summary>Asserts that collection does not contain actual as an item.</summary>
3130 <param name="collection">ICollection of objects to be considered</param>
3131 <param name="actual">Object that cannot exist within collection</param>
3132 <param name="message">The message that will be displayed on failure</param>
3133 </member>
3134 <member name="M:MbUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.ICollection,System.Object,System.String,System.Object[])">
3135 <summary>Asserts that collection does not contain actual as an item.</summary>
3136 <param name="collection">ICollection of objects to be considered</param>
3137 <param name="actual">Object that cannot exist within collection</param>
3138 <param name="message">The message that will be displayed on failure</param>
3139 <param name="args">Arguments to be used in formatting the message</param>
3140 </member>
3141 <member name="M:MbUnit.Framework.CollectionAssert.IsCountCorrect(System.Collections.ICollection)">
3142 <summary>Verifies that the <see cref="P:System.Collections.ICollection.Count" /> property is synchronized with the number of iterated elements.</summary>
3143 <param name="col">Collection to test</param>
3144 <exception cref="T:System.ArgumentNullException">
3145 <paramref name="col" /> is a null reference (Nothing in Visual Basic) </exception>
3146 </member>
3147 <member name="M:MbUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.ICollection,System.Collections.ICollection)">
3148 <summary>Asserts that subset is not a subset of superset.</summary>
3149 <param name="subset">The ICollection subset to be considered</param>
3150 <param name="superset">The ICollection superset to be considered</param>
3151 </member>
3152 <member name="M:MbUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String)">
3153 <summary>Asserts that subset is not a subset of superset.</summary>
3154 <param name="subset">The ICollection subset to be considered</param>
3155 <param name="superset">The ICollection superset to be considered</param>
3156 <param name="message">The message that will be displayed on failure</param>
3157 </member>
3158 <member name="M:MbUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
3159 <summary>Asserts that subset is not a subset of superset.</summary>
3160 <param name="subset">The ICollection subset to be considered</param>
3161 <param name="superset">The ICollection superset to be considered</param>
3162 <param name="message">The message that will be displayed on failure</param>
3163 <param name="args">Arguments to be used in formatting the message</param>
3164 </member>
3165 <member name="M:MbUnit.Framework.CollectionAssert.IsNotSynchronized(System.Collections.ICollection)">
3166 <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.IsSynchronized" /> is false.</summary>
3167 <param name="actual">Instance containing the expected value.</param>
3168 </member>
3169 <member name="M:MbUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.ICollection,System.Collections.ICollection)">
3170 <summary>Asserts that subset is a subset of superset.</summary>
3171 <param name="subset">The ICollection subset to be considered</param>
3172 <param name="superset">The ICollection superset to be considered</param>
3173 </member>
3174 <member name="M:MbUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String)">
3175 <summary>Asserts that subset is a subset of superset.</summary>
3176 <param name="subset">The ICollection subset to be considered</param>
3177 <param name="superset">The ICollection superset to be considered</param>
3178 <param name="message">The message that will be displayed on failure</param>
3179 </member>
3180 <member name="M:MbUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
3181 <summary>Asserts that subset is a subset of superset.</summary>
3182 <param name="subset">The ICollection subset to be considered</param>
3183 <param name="superset">The ICollection superset to be considered</param>
3184 <param name="message">The message that will be displayed on failure</param>
3185 <param name="args">Arguments to be used in formatting the message</param>
3186 </member>
3187 <member name="M:MbUnit.Framework.CollectionAssert.IsSynchronized(System.Collections.ICollection)">
3188 <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.IsSynchronized" /> is true.</summary>
3189 <param name="actual">Instance containing the expected value.</param>
3190 </member>
3191 <member name="T:MbUnit.Framework.CollectionIndexingFixtureAttribute">
3192 <summary>Collection indexing pattern. This class cannot be inherited.</summary>
3193 </member>
3194 <member name="M:MbUnit.Framework.CollectionIndexingFixtureAttribute.GetRun">
3195 <summary>Creates the execution logic</summary>
3196 <returns>A <see cref="T:MbUnit.Core.Runs.IRun" /> instance that represent the type test logic.</returns>
3197 </member>
3198 <member name="T:MbUnit.Framework.CollectionOrderFixtureAttribute">
3199 <summary>Collection Order Pattern implementations. This class cannot be inherited.</summary>
3200 </member>
3201 <member name="M:MbUnit.Framework.CollectionOrderFixtureAttribute.GetRun">
3202 <summary>Creates the run order for the collection</summary>
3203 <returns>An object derived from <see cref="T:MbUnit.Core.Runs.IRun" /> (a <see cref="T:MbUnit.Core.Runs.SequenceRun" /> object that contains the order of execution</returns>
3204 </member>
3205 <member name="T:MbUnit.Framework.CombinatorialTestAttribute">
3206 <summary>Tag use to mark a mark a combinatorial unit test method. This tells MbUnit to do a pairwise enumeration over the different data sample of each parameter for the test This class cannot be inherited.</summary>
3207 </member>
3208 <member name="P:MbUnit.Framework.CombinatorialTestAttribute.CombinationType">
3209 <summary>Returns the <see cref="P:MbUnit.Framework.CombinatorialTestAttribute.CombinationType" /> for this test.</summary>
3210 </member>
3211 <member name="M:MbUnit.Framework.CombinatorialTestAttribute.GetProduct(TestFu.Operations.IDomainCollection)">
3212 <summary>Returns the object representing the set of all tuples to be tested.</summary>
3213 <param name="domains">The collection of sets of parameter values to be combined</param>
3214 <returns>An <see cref="T:TestFu.Operations.ITupleEnumerable" /> object representing the set of tuples to be tested</returns>
3215 </member>
3216 <member name="T:MbUnit.Framework.CompilerAssert">
3217 <summary>Assertion helper for compilation. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3218 </member>
3219 <member name="P:MbUnit.Framework.CompilerAssert.CSharpCompiler">
3220 <summary>Gets the C# compiler from <see cref="T:Microsoft.CSharp.CSharpCodeProvider" />.</summary>
3221 <value>C# compiler.</value>
3222 </member>
3223 <member name="P:MbUnit.Framework.CompilerAssert.VBCompiler">
3224 <summary>Gets the VB.NET compiler from <see cref="T:Microsoft.VisualBasic.VBCodeProvider" />.</summary>
3225 <value>VB.NET compiler.</value>
3226 </member>
3227 <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.String)">
3228 <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
3229 <param name="compiler">Compiler instance</param>
3230 <param name="source">Source code to compile</param>
3231 </member>
3232 <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.IO.Stream)">
3233 <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
3234 <param name="compiler">Compiler instance</param>
3235 <param name="source">Source code to compile</param>
3236 </member>
3237 <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.Collections.Specialized.StringCollection,System.String)">
3238 <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
3239 <param name="compiler">Compiler instance</param>
3240 <param name="references">Referenced assemblies</param>
3241 <param name="source">Source code to compile</param>
3242 </member>
3243 <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.String)">
3244 <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
3245 <param name="compiler">
3246 <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
3247 <param name="options">Compilation options</param>
3248 <param name="source">source to compile</param>
3249 </member>
3250 <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.String,System.Boolean)">
3251 <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
3252 <param name="compiler">
3253 <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
3254 <param name="options">Compilation options</param>
3255 <param name="source">Source to compile</param>
3256 <param name="throwOnWarning">true if assertion should throw if any warning.</param>
3257 </member>
3258 <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.IO.Stream)">
3259 <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
3260 <param name="compiler">
3261 <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
3262 <param name="options">Compilation options</param>
3263 <param name="source">Stream containing the source to compile</param>
3264 </member>
3265 <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.IO.Stream,System.Boolean)">
3266 <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
3267 <param name="compiler">
3268 <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
3269 <param name="options">Compilation options</param>
3270 <param name="source">Stream containing the source to compile</param>
3271 <param name="throwOnWarning">true if assertion should throw if any warning.</param>
3272 </member>
3273 <member name="M:MbUnit.Framework.CompilerAssert.DisplayErrors(System.CodeDom.Compiler.CompilerResults,System.IO.TextWriter)">
3274 <summary>Writes the errors given in the compiler <paramref name="results" /> to the named <paramref name="writer" /></summary>
3275 <param name="results">The <see cref="T:System.CodeDom.Compiler.CompilerResults" /> generated by the compilation</param>
3276 <param name="writer">The <see cref="T:System.IO.TextWriter" /> to write the errors out to</param>
3277 </member>
3278 <member name="M:MbUnit.Framework.CompilerAssert.NotCompiles(System.CodeDom.Compiler.ICodeCompiler,System.String)">
3279 <summary>Verifies that <paramref name="source" /> does not compile using the provided compiler.</summary>
3280 <param name="compiler">
3281 <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
3282 <param name="source">Source to compile</param>
3283 </member>
3284 <member name="M:MbUnit.Framework.CompilerAssert.NotCompiles(System.CodeDom.Compiler.ICodeCompiler,System.IO.Stream)">
3285 <summary>Verifies that <paramref name="source" /> does not compile using the provided compiler.</summary>
3286 <param name="compiler">
3287 <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
3288 <param name="source">Source to compile</param>
3289 </member>
3290 <member name="M:MbUnit.Framework.CompilerAssert.NotCompiles(System.CodeDom.Compiler.ICodeCompiler,System.Collections.Specialized.StringCollection,System.String)">
3291 <summary>Verifies that <paramref name="source" /> does not compile using the provided compiler.</summary>
3292 <param name="compiler">
3293 <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
3294 <param name="referencedAssemblies">Collection of referenced assemblies</param>
3295 <param name="source">Source to compile</param>
3296 </member>
3297 <member name="M:MbUnit.Framework.CompilerAssert.NotCompiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.String)">
3298 <summary>Verifies that <paramref name="source" /> does not compile using the provided compiler.</summary>
3299 <param name="compiler">
3300 <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
3301 <param name="options">Compilation options</param>
3302 <param name="source">Source to compile</param>
3303 </member>
3304 <member name="M:MbUnit.Framework.CompilerAssert.NotCompiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.IO.Stream)">
3305 <summary>Verifies that <paramref name="source" /> does not compile using the provided compiler.</summary>
3306 <param name="compiler">
3307 <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
3308 <param name="options">Compilation options</param>
3309 <param name="source">Source to compile</param>
3310 </member>
3311 <member name="T:MbUnit.Framework.CompositeFixtureAttribute">
3312 <summary>Composite fixture pattern implementation. This class cannot be inherited.</summary>
3313 </member>
3314 <member name="P:MbUnit.Framework.CompositeFixtureAttribute.FixtureType">
3315 <summary>Gets or sets the fixture type.</summary>
3316 <value>Fixture instance type.</value>
3317 </member>
3318 <member name="M:MbUnit.Framework.CompositeFixtureAttribute.GetRun">
3319 <summary>Creates the execution logic</summary>
3320 <returns>A <see cref="T:MbUnit.Core.Runs.IRun" /> instance that represent the type test logic.</returns>
3321 </member>
3322 <member name="T:MbUnit.Framework.ConditionalExceptionAttribute">
3323 <summary>Tags method that should throw an exception if a predicate is true.</summary>
3324 </member>
3325 <member name="P:MbUnit.Framework.ConditionalExceptionAttribute.PredicateMethodName">
3326 <summary>Gets the name of the predicate being cecked during test execution</summary>
3327 </member>
3328 <member name="M:MbUnit.Framework.ConditionalExceptionAttribute.GetInvoker(MbUnit.Core.Invokers.IRunInvoker)">
3329 <summary>Returns a <see cref="T:MbUnit.Core.Invokers.ConditionalExceptionRunInvoker" /> object to invoke the test if the predicate is true</summary>
3330 <param name="invoker">The standard test invoker derived from <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /></param>
3331 <returns>A <see cref="T:MbUnit.Core.Invokers.ConditionalExceptionRunInvoker" /> object to invoke the test if the predicate is true</returns>
3332 </member>
3333 <member name="T:MbUnit.Framework.ConsoleTester">
3334 <summary>
3335 <para> When you need to test a console application, this task usually involves calling the application using Process.Start and monitoring that process. This class simplifies this.</para>
3336 <list type="bullet">
3337 <item>it redirects output and error streams so that they are logged in the report</item>
3338 <item>it checks the exit code</item>
3339 <item>a time out can be specified</item>
3340 </list>
3341 </summary>
3342 </member>
3343 <member name="P:MbUnit.Framework.ConsoleTester.ExpectedExitCode">
3344 <summary>Gets or set the expected exit code from the application once it has completed its run</summary>
3345 <value>The expected exit code (an integer).</value>
3346 </member>
3347 <member name="P:MbUnit.Framework.ConsoleTester.TimeOut">
3348 <summary>Gets or sets the time out.</summary>
3349 <value>The time out in seconds</value>
3350 </member>
3351 <member name="M:MbUnit.Framework.ConsoleTester.DumpConsoles">
3352 <summary>Writes the standard output and error streams from the app to the console</summary>
3353 </member>
3354 <member name="M:MbUnit.Framework.ConsoleTester.GetArguments">
3355 <summary>Gets the arguments for the console application</summary>
3356 <returns>The arguments for the console application as a space-delimited string</returns>
3357 </member>
3358 <member name="M:MbUnit.Framework.ConsoleTester.Run">
3359 <summary>Runs the console app with the given arguments</summary>
3360 </member>
3361 <member name="T:MbUnit.Framework.ControlAssert">
3362 <summary>Class containing generic assert methods for the comparison of Windows Form <see cref="T:System.Windows.Forms.Control" />s. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3363 </member>
3364 <member name="M:MbUnit.Framework.ControlAssert.AllowDrop(System.Windows.Forms.Control)">
3365 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AllowDrop" /> is true.</summary>
3366 <param name="actual">Instance containing the expected value.</param>
3367 </member>
3368 <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleDefaultActionDescriptionEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3369 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleDefaultActionDescription" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3370 <param name="expected">Instance containing the expected value.</param>
3371 <param name="actual">Instance containing the tested value.</param>
3372 </member>
3373 <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleDefaultActionDescriptionEqual(System.String,System.Windows.Forms.Control)">
3374 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleDefaultActionDescription" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3375 <param name="expected">Expected value.</param>
3376 <param name="actual">Instance containing the tested value.</param>
3377 </member>
3378 <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleDescriptionEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3379 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleDescription" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3380 <param name="expected">Instance containing the expected value.</param>
3381 <param name="actual">Instance containing the tested value.</param>
3382 </member>
3383 <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleDescriptionEqual(System.String,System.Windows.Forms.Control)">
3384 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleDescription" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3385 <param name="expected">Expected value.</param>
3386 <param name="actual">Instance containing the tested value.</param>
3387 </member>
3388 <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleNameEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3389 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleName" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3390 <param name="expected">Instance containing the expected value.</param>
3391 <param name="actual">Instance containing the tested value.</param>
3392 </member>
3393 <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleNameEqual(System.String,System.Windows.Forms.Control)">
3394 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleName" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3395 <param name="expected">Expected value.</param>
3396 <param name="actual">Instance containing the tested value.</param>
3397 </member>
3398 <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleRoleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3399 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleRole" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3400 <param name="expected">Instance containing the expected value.</param>
3401 <param name="actual">Instance containing the tested value.</param>
3402 </member>
3403 <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleRoleEqual(System.Windows.Forms.AccessibleRole,System.Windows.Forms.Control)">
3404 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleRole" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3405 <param name="expected">Expected value.</param>
3406 <param name="actual">Instance containing the tested value.</param>
3407 </member>
3408 <member name="M:MbUnit.Framework.ControlAssert.AreAllowDropEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3409 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AllowDrop" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3410 <param name="expected">Instance containing the expected value.</param>
3411 <param name="actual">Instance containing the tested value.</param>
3412 </member>
3413 <member name="M:MbUnit.Framework.ControlAssert.AreAllowDropEqual(System.Boolean,System.Windows.Forms.Control)">
3414 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AllowDrop" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3415 <param name="expected">Expected value.</param>
3416 <param name="actual">Instance containing the tested value.</param>
3417 </member>
3418 <member name="M:MbUnit.Framework.ControlAssert.AreAnchorEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3419 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Anchor" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3420 <param name="expected">Instance containing the expected value.</param>
3421 <param name="actual">Instance containing the tested value.</param>
3422 </member>
3423 <member name="M:MbUnit.Framework.ControlAssert.AreAnchorEqual(System.Windows.Forms.AnchorStyles,System.Windows.Forms.Control)">
3424 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Anchor" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3425 <param name="expected">Expected value.</param>
3426 <param name="actual">Instance containing the tested value.</param>
3427 </member>
3428 <member name="M:MbUnit.Framework.ControlAssert.AreBackColorEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3429 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.BackColor" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3430 <param name="expected">Instance containing the expected value.</param>
3431 <param name="actual">Instance containing the tested value.</param>
3432 </member>
3433 <member name="M:MbUnit.Framework.ControlAssert.AreBackColorEqual(System.Drawing.Color,System.Windows.Forms.Control)">
3434 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.BackColor" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3435 <param name="expected">Expected value.</param>
3436 <param name="actual">Instance containing the tested value.</param>
3437 </member>
3438 <member name="M:MbUnit.Framework.ControlAssert.AreBackgroundImageEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3439 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.BackgroundImage" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3440 <param name="expected">Instance containing the expected value.</param>
3441 <param name="actual">Instance containing the tested value.</param>
3442 </member>
3443 <member name="M:MbUnit.Framework.ControlAssert.AreBackgroundImageEqual(System.Drawing.Image,System.Windows.Forms.Control)">
3444 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.BackgroundImage" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3445 <param name="expected">Expected value.</param>
3446 <param name="actual">Instance containing the tested value.</param>
3447 </member>
3448 <member name="M:MbUnit.Framework.ControlAssert.AreBindingContextEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3449 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.BindingContext" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3450 <param name="expected">Instance containing the expected value.</param>
3451 <param name="actual">Instance containing the tested value.</param>
3452 </member>
3453 <member name="M:MbUnit.Framework.ControlAssert.AreBindingContextEqual(System.Windows.Forms.BindingContext,System.Windows.Forms.Control)">
3454 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.BindingContext" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3455 <param name="expected">Expected value.</param>
3456 <param name="actual">Instance containing the tested value.</param>
3457 </member>
3458 <member name="M:MbUnit.Framework.ControlAssert.AreBottomEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3459 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Bottom" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3460 <param name="expected">Instance containing the expected value.</param>
3461 <param name="actual">Instance containing the tested value.</param>
3462 </member>
3463 <member name="M:MbUnit.Framework.ControlAssert.AreBottomEqual(System.Int32,System.Windows.Forms.Control)">
3464 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Bottom" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3465 <param name="expected">Expected value.</param>
3466 <param name="actual">Instance containing the tested value.</param>
3467 </member>
3468 <member name="M:MbUnit.Framework.ControlAssert.AreBoundsEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3469 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Bounds" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3470 <param name="expected">Instance containing the expected value.</param>
3471 <param name="actual">Instance containing the tested value.</param>
3472 </member>
3473 <member name="M:MbUnit.Framework.ControlAssert.AreBoundsEqual(System.Drawing.Rectangle,System.Windows.Forms.Control)">
3474 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Bounds" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3475 <param name="expected">Expected value.</param>
3476 <param name="actual">Instance containing the tested value.</param>
3477 </member>
3478 <member name="M:MbUnit.Framework.ControlAssert.AreCanFocusEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3479 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanFocus" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3480 <param name="expected">Instance containing the expected value.</param>
3481 <param name="actual">Instance containing the tested value.</param>
3482 </member>
3483 <member name="M:MbUnit.Framework.ControlAssert.AreCanFocusEqual(System.Boolean,System.Windows.Forms.Control)">
3484 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanFocus" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3485 <param name="expected">Expected value.</param>
3486 <param name="actual">Instance containing the tested value.</param>
3487 </member>
3488 <member name="M:MbUnit.Framework.ControlAssert.AreCanSelectEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3489 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanSelect" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3490 <param name="expected">Instance containing the expected value.</param>
3491 <param name="actual">Instance containing the tested value.</param>
3492 </member>
3493 <member name="M:MbUnit.Framework.ControlAssert.AreCanSelectEqual(System.Boolean,System.Windows.Forms.Control)">
3494 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanSelect" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3495 <param name="expected">Expected value.</param>
3496 <param name="actual">Instance containing the tested value.</param>
3497 </member>
3498 <member name="M:MbUnit.Framework.ControlAssert.AreCaptureEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3499 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Capture" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3500 <param name="expected">Instance containing the expected value.</param>
3501 <param name="actual">Instance containing the tested value.</param>
3502 </member>
3503 <member name="M:MbUnit.Framework.ControlAssert.AreCaptureEqual(System.Boolean,System.Windows.Forms.Control)">
3504 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Capture" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3505 <param name="expected">Expected value.</param>
3506 <param name="actual">Instance containing the tested value.</param>
3507 </member>
3508 <member name="M:MbUnit.Framework.ControlAssert.AreCausesValidationEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3509 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CausesValidation" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3510 <param name="expected">Instance containing the expected value.</param>
3511 <param name="actual">Instance containing the tested value.</param>
3512 </member>
3513 <member name="M:MbUnit.Framework.ControlAssert.AreCausesValidationEqual(System.Boolean,System.Windows.Forms.Control)">
3514 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CausesValidation" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3515 <param name="expected">Expected value.</param>
3516 <param name="actual">Instance containing the tested value.</param>
3517 </member>
3518 <member name="M:MbUnit.Framework.ControlAssert.AreClientRectangleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3519 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ClientRectangle" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3520 <param name="expected">Instance containing the expected value.</param>
3521 <param name="actual">Instance containing the tested value.</param>
3522 </member>
3523 <member name="M:MbUnit.Framework.ControlAssert.AreClientRectangleEqual(System.Drawing.Rectangle,System.Windows.Forms.Control)">
3524 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ClientRectangle" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3525 <param name="expected">Expected value.</param>
3526 <param name="actual">Instance containing the tested value.</param>
3527 </member>
3528 <member name="M:MbUnit.Framework.ControlAssert.AreClientSizeEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3529 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ClientSize" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3530 <param name="expected">Instance containing the expected value.</param>
3531 <param name="actual">Instance containing the tested value.</param>
3532 </member>
3533 <member name="M:MbUnit.Framework.ControlAssert.AreClientSizeEqual(System.Drawing.Size,System.Windows.Forms.Control)">
3534 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ClientSize" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3535 <param name="expected">Expected value.</param>
3536 <param name="actual">Instance containing the tested value.</param>
3537 </member>
3538 <member name="M:MbUnit.Framework.ControlAssert.AreCompanyNameEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3539 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CompanyName" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3540 <param name="expected">Instance containing the expected value.</param>
3541 <param name="actual">Instance containing the tested value.</param>
3542 </member>
3543 <member name="M:MbUnit.Framework.ControlAssert.AreCompanyNameEqual(System.String,System.Windows.Forms.Control)">
3544 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CompanyName" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3545 <param name="expected">Expected value.</param>
3546 <param name="actual">Instance containing the tested value.</param>
3547 </member>
3548 <member name="M:MbUnit.Framework.ControlAssert.AreContainerEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3549 <summary>Verifies that the property value <see cref="P:System.ComponentModel.Component.Container" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3550 <param name="expected">Instance containing the expected value.</param>
3551 <param name="actual">Instance containing the tested value.</param>
3552 </member>
3553 <member name="M:MbUnit.Framework.ControlAssert.AreContainerEqual(System.ComponentModel.IContainer,System.Windows.Forms.Control)">
3554 <summary>Verifies that the property value <see cref="P:System.ComponentModel.Component.Container" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3555 <param name="expected">Expected value.</param>
3556 <param name="actual">Instance containing the tested value.</param>
3557 </member>
3558 <member name="M:MbUnit.Framework.ControlAssert.AreContainsFocusEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3559 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContainsFocus" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3560 <param name="expected">Instance containing the expected value.</param>
3561 <param name="actual">Instance containing the tested value.</param>
3562 </member>
3563 <member name="M:MbUnit.Framework.ControlAssert.AreContainsFocusEqual(System.Boolean,System.Windows.Forms.Control)">
3564 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContainsFocus" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3565 <param name="expected">Expected value.</param>
3566 <param name="actual">Instance containing the tested value.</param>
3567 </member>
3568 <member name="M:MbUnit.Framework.ControlAssert.AreContextMenuEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3569 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContextMenu" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3570 <param name="expected">Instance containing the expected value.</param>
3571 <param name="actual">Instance containing the tested value.</param>
3572 </member>
3573 <member name="M:MbUnit.Framework.ControlAssert.AreContextMenuEqual(System.Windows.Forms.ContextMenu,System.Windows.Forms.Control)">
3574 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContextMenu" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3575 <param name="expected">Expected value.</param>
3576 <param name="actual">Instance containing the tested value.</param>
3577 </member>
3578 <member name="M:MbUnit.Framework.ControlAssert.AreControlsEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3579 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Controls" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3580 <param name="expected">Instance containing the expected value.</param>
3581 <param name="actual">Instance containing the tested value.</param>
3582 </member>
3583 <member name="M:MbUnit.Framework.ControlAssert.AreControlsEqual(System.Windows.Forms.Control.ControlCollection,System.Windows.Forms.Control)">
3584 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Controls" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3585 <param name="expected">Expected value.</param>
3586 <param name="actual">Instance containing the tested value.</param>
3587 </member>
3588 <member name="M:MbUnit.Framework.ControlAssert.AreCreatedEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3589 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Created" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3590 <param name="expected">Instance containing the expected value.</param>
3591 <param name="actual">Instance containing the tested value.</param>
3592 </member>
3593 <member name="M:MbUnit.Framework.ControlAssert.AreCreatedEqual(System.Boolean,System.Windows.Forms.Control)">
3594 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Created" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3595 <param name="expected">Expected value.</param>
3596 <param name="actual">Instance containing the tested value.</param>
3597 </member>
3598 <member name="M:MbUnit.Framework.ControlAssert.AreCursorEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3599 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Cursor" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3600 <param name="expected">Instance containing the expected value.</param>
3601 <param name="actual">Instance containing the tested value.</param>
3602 </member>
3603 <member name="M:MbUnit.Framework.ControlAssert.AreCursorEqual(System.Windows.Forms.Cursor,System.Windows.Forms.Control)">
3604 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Cursor" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3605 <param name="expected">Expected value.</param>
3606 <param name="actual">Instance containing the tested value.</param>
3607 </member>
3608 <member name="M:MbUnit.Framework.ControlAssert.AreDataBindingsEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3609 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.DataBindings" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3610 <param name="expected">Instance containing the expected value.</param>
3611 <param name="actual">Instance containing the tested value.</param>
3612 </member>
3613 <member name="M:MbUnit.Framework.ControlAssert.AreDataBindingsEqual(System.Windows.Forms.ControlBindingsCollection,System.Windows.Forms.Control)">
3614 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.DataBindings" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3615 <param name="expected">Expected value.</param>
3616 <param name="actual">Instance containing the tested value.</param>
3617 </member>
3618 <member name="M:MbUnit.Framework.ControlAssert.AreDisplayRectangleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3619 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.DisplayRectangle" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3620 <param name="expected">Instance containing the expected value.</param>
3621 <param name="actual">Instance containing the tested value.</param>
3622 </member>
3623 <member name="M:MbUnit.Framework.ControlAssert.AreDisplayRectangleEqual(System.Drawing.Rectangle,System.Windows.Forms.Control)">
3624 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.DisplayRectangle" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3625 <param name="expected">Expected value.</param>
3626 <param name="actual">Instance containing the tested value.</param>
3627 </member>
3628 <member name="M:MbUnit.Framework.ControlAssert.AreDisposingEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3629 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Disposing" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3630 <param name="expected">Instance containing the expected value.</param>
3631 <param name="actual">Instance containing the tested value.</param>
3632 </member>
3633 <member name="M:MbUnit.Framework.ControlAssert.AreDisposingEqual(System.Boolean,System.Windows.Forms.Control)">
3634 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Disposing" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3635 <param name="expected">Expected value.</param>
3636 <param name="actual">Instance containing the tested value.</param>
3637 </member>
3638 <member name="M:MbUnit.Framework.ControlAssert.AreDockEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3639 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Dock" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3640 <param name="expected">Instance containing the expected value.</param>
3641 <param name="actual">Instance containing the tested value.</param>
3642 </member>
3643 <member name="M:MbUnit.Framework.ControlAssert.AreDockEqual(System.Windows.Forms.DockStyle,System.Windows.Forms.Control)">
3644 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Dock" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3645 <param name="expected">Expected value.</param>
3646 <param name="actual">Instance containing the tested value.</param>
3647 </member>
3648 <member name="M:MbUnit.Framework.ControlAssert.AreEnabledEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3649 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Enabled" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3650 <param name="expected">Instance containing the expected value.</param>
3651 <param name="actual">Instance containing the tested value.</param>
3652 </member>
3653 <member name="M:MbUnit.Framework.ControlAssert.AreEnabledEqual(System.Boolean,System.Windows.Forms.Control)">
3654 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Enabled" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3655 <param name="expected">Expected value.</param>
3656 <param name="actual">Instance containing the tested value.</param>
3657 </member>
3658 <member name="M:MbUnit.Framework.ControlAssert.AreFocusedEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3659 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Focused" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3660 <param name="expected">Instance containing the expected value.</param>
3661 <param name="actual">Instance containing the tested value.</param>
3662 </member>
3663 <member name="M:MbUnit.Framework.ControlAssert.AreFocusedEqual(System.Boolean,System.Windows.Forms.Control)">
3664 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Focused" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3665 <param name="expected">Expected value.</param>
3666 <param name="actual">Instance containing the tested value.</param>
3667 </member>
3668 <member name="M:MbUnit.Framework.ControlAssert.AreFontEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3669 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Font" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3670 <param name="expected">Instance containing the expected value.</param>
3671 <param name="actual">Instance containing the tested value.</param>
3672 </member>
3673 <member name="M:MbUnit.Framework.ControlAssert.AreFontEqual(System.Drawing.Font,System.Windows.Forms.Control)">
3674 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Font" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3675 <param name="expected">Expected value.</param>
3676 <param name="actual">Instance containing the tested value.</param>
3677 </member>
3678 <member name="M:MbUnit.Framework.ControlAssert.AreForeColorEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3679 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ForeColor" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3680 <param name="expected">Instance containing the expected value.</param>
3681 <param name="actual">Instance containing the tested value.</param>
3682 </member>
3683 <member name="M:MbUnit.Framework.ControlAssert.AreForeColorEqual(System.Drawing.Color,System.Windows.Forms.Control)">
3684 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ForeColor" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3685 <param name="expected">Expected value.</param>
3686 <param name="actual">Instance containing the tested value.</param>
3687 </member>
3688 <member name="M:MbUnit.Framework.ControlAssert.AreHandleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3689 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Handle" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3690 <param name="expected">Instance containing the expected value.</param>
3691 <param name="actual">Instance containing the tested value.</param>
3692 </member>
3693 <member name="M:MbUnit.Framework.ControlAssert.AreHandleEqual(System.IntPtr,System.Windows.Forms.Control)">
3694 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Handle" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3695 <param name="expected">Expected value.</param>
3696 <param name="actual">Instance containing the tested value.</param>
3697 </member>
3698 <member name="M:MbUnit.Framework.ControlAssert.AreHasChildrenEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3699 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.HasChildren" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3700 <param name="expected">Instance containing the expected value.</param>
3701 <param name="actual">Instance containing the tested value.</param>
3702 </member>
3703 <member name="M:MbUnit.Framework.ControlAssert.AreHasChildrenEqual(System.Boolean,System.Windows.Forms.Control)">
3704 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.HasChildren" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3705 <param name="expected">Expected value.</param>
3706 <param name="actual">Instance containing the tested value.</param>
3707 </member>
3708 <member name="M:MbUnit.Framework.ControlAssert.AreHeightEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3709 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Height" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3710 <param name="expected">Instance containing the expected value.</param>
3711 <param name="actual">Instance containing the tested value.</param>
3712 </member>
3713 <member name="M:MbUnit.Framework.ControlAssert.AreHeightEqual(System.Int32,System.Windows.Forms.Control)">
3714 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Height" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3715 <param name="expected">Expected value.</param>
3716 <param name="actual">Instance containing the tested value.</param>
3717 </member>
3718 <member name="M:MbUnit.Framework.ControlAssert.AreImeModeEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3719 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ImeMode" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3720 <param name="expected">Instance containing the expected value.</param>
3721 <param name="actual">Instance containing the tested value.</param>
3722 </member>
3723 <member name="M:MbUnit.Framework.ControlAssert.AreImeModeEqual(System.Windows.Forms.ImeMode,System.Windows.Forms.Control)">
3724 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ImeMode" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3725 <param name="expected">Expected value.</param>
3726 <param name="actual">Instance containing the tested value.</param>
3727 </member>
3728 <member name="M:MbUnit.Framework.ControlAssert.AreInvokeRequiredEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3729 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3730 <param name="expected">Instance containing the expected value.</param>
3731 <param name="actual">Instance containing the tested value.</param>
3732 </member>
3733 <member name="M:MbUnit.Framework.ControlAssert.AreInvokeRequiredEqual(System.Boolean,System.Windows.Forms.Control)">
3734 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3735 <param name="expected">Expected value.</param>
3736 <param name="actual">Instance containing the tested value.</param>
3737 </member>
3738 <member name="M:MbUnit.Framework.ControlAssert.AreIsAccessibleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3739 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsAccessible" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3740 <param name="expected">Instance containing the expected value.</param>
3741 <param name="actual">Instance containing the tested value.</param>
3742 </member>
3743 <member name="M:MbUnit.Framework.ControlAssert.AreIsAccessibleEqual(System.Boolean,System.Windows.Forms.Control)">
3744 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsAccessible" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3745 <param name="expected">Expected value.</param>
3746 <param name="actual">Instance containing the tested value.</param>
3747 </member>
3748 <member name="M:MbUnit.Framework.ControlAssert.AreIsDisposedEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3749 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsDisposed" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3750 <param name="expected">Instance containing the expected value.</param>
3751 <param name="actual">Instance containing the tested value.</param>
3752 </member>
3753 <member name="M:MbUnit.Framework.ControlAssert.AreIsDisposedEqual(System.Boolean,System.Windows.Forms.Control)">
3754 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsDisposed" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3755 <param name="expected">Expected value.</param>
3756 <param name="actual">Instance containing the tested value.</param>
3757 </member>
3758 <member name="M:MbUnit.Framework.ControlAssert.AreIsHandleCreatedEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3759 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsHandleCreated" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3760 <param name="expected">Instance containing the expected value.</param>
3761 <param name="actual">Instance containing the tested value.</param>
3762 </member>
3763 <member name="M:MbUnit.Framework.ControlAssert.AreIsHandleCreatedEqual(System.Boolean,System.Windows.Forms.Control)">
3764 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsHandleCreated" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3765 <param name="expected">Expected value.</param>
3766 <param name="actual">Instance containing the tested value.</param>
3767 </member>
3768 <member name="M:MbUnit.Framework.ControlAssert.AreLeftEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3769 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Left" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3770 <param name="expected">Instance containing the expected value.</param>
3771 <param name="actual">Instance containing the tested value.</param>
3772 </member>
3773 <member name="M:MbUnit.Framework.ControlAssert.AreLeftEqual(System.Int32,System.Windows.Forms.Control)">
3774 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Left" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3775 <param name="expected">Expected value.</param>
3776 <param name="actual">Instance containing the tested value.</param>
3777 </member>
3778 <member name="M:MbUnit.Framework.ControlAssert.AreLocationEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3779 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Location" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3780 <param name="expected">Instance containing the expected value.</param>
3781 <param name="actual">Instance containing the tested value.</param>
3782 </member>
3783 <member name="M:MbUnit.Framework.ControlAssert.AreLocationEqual(System.Drawing.Point,System.Windows.Forms.Control)">
3784 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Location" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3785 <param name="expected">Expected value.</param>
3786 <param name="actual">Instance containing the tested value.</param>
3787 </member>
3788 <member name="M:MbUnit.Framework.ControlAssert.AreNameEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3789 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Name" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3790 <param name="expected">Instance containing the expected value.</param>
3791 <param name="actual">Instance containing the tested value.</param>
3792 </member>
3793 <member name="M:MbUnit.Framework.ControlAssert.AreNameEqual(System.String,System.Windows.Forms.Control)">
3794 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Name" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3795 <param name="expected">Expected value.</param>
3796 <param name="actual">Instance containing the tested value.</param>
3797 </member>
3798 <member name="M:MbUnit.Framework.ControlAssert.AreParentEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3799 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Parent" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3800 <param name="expected">Instance containing the expected value.</param>
3801 <param name="actual">Instance containing the tested value.</param>
3802 </member>
3803 <member name="M:MbUnit.Framework.ControlAssert.AreProductNameEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3804 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ProductName" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3805 <param name="expected">Instance containing the expected value.</param>
3806 <param name="actual">Instance containing the tested value.</param>
3807 </member>
3808 <member name="M:MbUnit.Framework.ControlAssert.AreProductNameEqual(System.String,System.Windows.Forms.Control)">
3809 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ProductName" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3810 <param name="expected">Expected value.</param>
3811 <param name="actual">Instance containing the tested value.</param>
3812 </member>
3813 <member name="M:MbUnit.Framework.ControlAssert.AreProductVersionEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3814 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ProductVersion" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3815 <param name="expected">Instance containing the expected value.</param>
3816 <param name="actual">Instance containing the tested value.</param>
3817 </member>
3818 <member name="M:MbUnit.Framework.ControlAssert.AreProductVersionEqual(System.String,System.Windows.Forms.Control)">
3819 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ProductVersion" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3820 <param name="expected">Expected value.</param>
3821 <param name="actual">Instance containing the tested value.</param>
3822 </member>
3823 <member name="M:MbUnit.Framework.ControlAssert.AreRecreatingHandleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3824 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.RecreatingHandle" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3825 <param name="expected">Instance containing the expected value.</param>
3826 <param name="actual">Instance containing the tested value.</param>
3827 </member>
3828 <member name="M:MbUnit.Framework.ControlAssert.AreRecreatingHandleEqual(System.Boolean,System.Windows.Forms.Control)">
3829 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.RecreatingHandle" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3830 <param name="expected">Expected value.</param>
3831 <param name="actual">Instance containing the tested value.</param>
3832 </member>
3833 <member name="M:MbUnit.Framework.ControlAssert.AreRegionEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3834 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Region" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3835 <param name="expected">Instance containing the expected value.</param>
3836 <param name="actual">Instance containing the tested value.</param>
3837 </member>
3838 <member name="M:MbUnit.Framework.ControlAssert.AreRegionEqual(System.Drawing.Region,System.Windows.Forms.Control)">
3839 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Region" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3840 <param name="expected">Expected value.</param>
3841 <param name="actual">Instance containing the tested value.</param>
3842 </member>
3843 <member name="M:MbUnit.Framework.ControlAssert.AreRightEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3844 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Right" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3845 <param name="expected">Instance containing the expected value.</param>
3846 <param name="actual">Instance containing the tested value.</param>
3847 </member>
3848 <member name="M:MbUnit.Framework.ControlAssert.AreRightEqual(System.Int32,System.Windows.Forms.Control)">
3849 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Right" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3850 <param name="expected">Expected value.</param>
3851 <param name="actual">Instance containing the tested value.</param>
3852 </member>
3853 <member name="M:MbUnit.Framework.ControlAssert.AreRightToLeftEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3854 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.RightToLeft" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3855 <param name="expected">Instance containing the expected value.</param>
3856 <param name="actual">Instance containing the tested value.</param>
3857 </member>
3858 <member name="M:MbUnit.Framework.ControlAssert.AreRightToLeftEqual(System.Windows.Forms.RightToLeft,System.Windows.Forms.Control)">
3859 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.RightToLeft" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3860 <param name="expected">Expected value.</param>
3861 <param name="actual">Instance containing the tested value.</param>
3862 </member>
3863 <member name="M:MbUnit.Framework.ControlAssert.AreSiteEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3864 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Site" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3865 <param name="expected">Instance containing the expected value.</param>
3866 <param name="actual">Instance containing the tested value.</param>
3867 </member>
3868 <member name="M:MbUnit.Framework.ControlAssert.AreSiteEqual(System.ComponentModel.ISite,System.Windows.Forms.Control)">
3869 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Site" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3870 <param name="expected">Expected value.</param>
3871 <param name="actual">Instance containing the tested value.</param>
3872 </member>
3873 <member name="M:MbUnit.Framework.ControlAssert.AreSizeEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3874 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Size" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3875 <param name="expected">Instance containing the expected value.</param>
3876 <param name="actual">Instance containing the tested value.</param>
3877 </member>
3878 <member name="M:MbUnit.Framework.ControlAssert.AreSizeEqual(System.Drawing.Size,System.Windows.Forms.Control)">
3879 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Size" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3880 <param name="expected">Expected value.</param>
3881 <param name="actual">Instance containing the tested value.</param>
3882 </member>
3883 <member name="M:MbUnit.Framework.ControlAssert.AreTabIndexEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3884 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabIndex" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3885 <param name="expected">Instance containing the expected value.</param>
3886 <param name="actual">Instance containing the tested value.</param>
3887 </member>
3888 <member name="M:MbUnit.Framework.ControlAssert.AreTabIndexEqual(System.Int32,System.Windows.Forms.Control)">
3889 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabIndex" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3890 <param name="expected">Expected value.</param>
3891 <param name="actual">Instance containing the tested value.</param>
3892 </member>
3893 <member name="M:MbUnit.Framework.ControlAssert.AreTabStopEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3894 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabStop" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3895 <param name="expected">Instance containing the expected value.</param>
3896 <param name="actual">Instance containing the tested value.</param>
3897 </member>
3898 <member name="M:MbUnit.Framework.ControlAssert.AreTabStopEqual(System.Boolean,System.Windows.Forms.Control)">
3899 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabStop" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3900 <param name="expected">Expected value.</param>
3901 <param name="actual">Instance containing the tested value.</param>
3902 </member>
3903 <member name="M:MbUnit.Framework.ControlAssert.AreTagEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3904 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Tag" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3905 <param name="expected">Instance containing the expected value.</param>
3906 <param name="actual">Instance containing the tested value.</param>
3907 </member>
3908 <member name="M:MbUnit.Framework.ControlAssert.AreTagEqual(System.Object,System.Windows.Forms.Control)">
3909 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Tag" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3910 <param name="expected">Expected value.</param>
3911 <param name="actual">Instance containing the tested value.</param>
3912 </member>
3913 <member name="M:MbUnit.Framework.ControlAssert.AreTextEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3914 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Text" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3915 <param name="expected">Instance containing the expected value.</param>
3916 <param name="actual">Instance containing the tested value.</param>
3917 </member>
3918 <member name="M:MbUnit.Framework.ControlAssert.AreTextEqual(System.String,System.Windows.Forms.Control)">
3919 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Text" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3920 <param name="expected">Expected value.</param>
3921 <param name="actual">Instance containing the tested value.</param>
3922 </member>
3923 <member name="M:MbUnit.Framework.ControlAssert.AreTopEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3924 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Top" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3925 <param name="expected">Instance containing the expected value.</param>
3926 <param name="actual">Instance containing the tested value.</param>
3927 </member>
3928 <member name="M:MbUnit.Framework.ControlAssert.AreTopEqual(System.Int32,System.Windows.Forms.Control)">
3929 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Top" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3930 <param name="expected">Expected value.</param>
3931 <param name="actual">Instance containing the tested value.</param>
3932 </member>
3933 <member name="M:MbUnit.Framework.ControlAssert.AreTopLevelControlEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3934 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TopLevelControl" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3935 <param name="expected">Instance containing the expected value.</param>
3936 <param name="actual">Instance containing the tested value.</param>
3937 </member>
3938 <member name="M:MbUnit.Framework.ControlAssert.AreVisibleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3939 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Visible" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3940 <param name="expected">Instance containing the expected value.</param>
3941 <param name="actual">Instance containing the tested value.</param>
3942 </member>
3943 <member name="M:MbUnit.Framework.ControlAssert.AreVisibleEqual(System.Boolean,System.Windows.Forms.Control)">
3944 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Visible" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3945 <param name="expected">Expected value.</param>
3946 <param name="actual">Instance containing the tested value.</param>
3947 </member>
3948 <member name="M:MbUnit.Framework.ControlAssert.AreWidthEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3949 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Width" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3950 <param name="expected">Instance containing the expected value.</param>
3951 <param name="actual">Instance containing the tested value.</param>
3952 </member>
3953 <member name="M:MbUnit.Framework.ControlAssert.AreWidthEqual(System.Int32,System.Windows.Forms.Control)">
3954 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Width" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3955 <param name="expected">Expected value.</param>
3956 <param name="actual">Instance containing the tested value.</param>
3957 </member>
3958 <member name="M:MbUnit.Framework.ControlAssert.AreWindowTargetEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3959 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.WindowTarget" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3960 <param name="expected">Instance containing the expected value.</param>
3961 <param name="actual">Instance containing the tested value.</param>
3962 </member>
3963 <member name="M:MbUnit.Framework.ControlAssert.AreWindowTargetEqual(System.Windows.Forms.IWindowTarget,System.Windows.Forms.Control)">
3964 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.WindowTarget" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3965 <param name="expected">Expected value.</param>
3966 <param name="actual">Instance containing the tested value.</param>
3967 </member>
3968 <member name="M:MbUnit.Framework.ControlAssert.CanFocus(System.Windows.Forms.Control)">
3969 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanFocus" /> is true.</summary>
3970 <param name="actual">Instance containing the expected value.</param>
3971 </member>
3972 <member name="M:MbUnit.Framework.ControlAssert.CanSelect(System.Windows.Forms.Control)">
3973 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanSelect" /> is true.</summary>
3974 <param name="actual">Instance containing the expected value.</param>
3975 </member>
3976 <member name="M:MbUnit.Framework.ControlAssert.Capture(System.Windows.Forms.Control)">
3977 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Capture" /> is true.</summary>
3978 <param name="actual">Instance containing the expected value.</param>
3979 </member>
3980 <member name="M:MbUnit.Framework.ControlAssert.CausesValidation(System.Windows.Forms.Control)">
3981 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CausesValidation" /> is true.</summary>
3982 <param name="actual">Instance containing the expected value.</param>
3983 </member>
3984 <member name="M:MbUnit.Framework.ControlAssert.ContainsFocus(System.Windows.Forms.Control)">
3985 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContainsFocus" /> is true.</summary>
3986 <param name="actual">Instance containing the expected value.</param>
3987 </member>
3988 <member name="M:MbUnit.Framework.ControlAssert.Created(System.Windows.Forms.Control)">
3989 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Created" /> is true.</summary>
3990 <param name="actual">Instance containing the expected value.</param>
3991 </member>
3992 <member name="M:MbUnit.Framework.ControlAssert.Disposing(System.Windows.Forms.Control)">
3993 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Disposing" /> is true.</summary>
3994 <param name="actual">Instance containing the expected value.</param>
3995 </member>
3996 <member name="M:MbUnit.Framework.ControlAssert.Enabled(System.Windows.Forms.Control)">
3997 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Enabled" /> is true.</summary>
3998 <param name="actual">Instance containing the expected value.</param>
3999 </member>
4000 <member name="M:MbUnit.Framework.ControlAssert.Focused(System.Windows.Forms.Control)">
4001 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Focused" /> is true.</summary>
4002 <param name="actual">Instance containing the expected value.</param>
4003 </member>
4004 <member name="M:MbUnit.Framework.ControlAssert.HasChildren(System.Windows.Forms.Control)">
4005 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.HasChildren" /> is true.</summary>
4006 <param name="actual">Instance containing the expected value.</param>
4007 </member>
4008 <member name="M:MbUnit.Framework.ControlAssert.InvokeRequired(System.Windows.Forms.Control)">
4009 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> is true.</summary>
4010 <param name="actual">Instance containing the expected value.</param>
4011 </member>
4012 <member name="M:MbUnit.Framework.ControlAssert.IsAccessible(System.Windows.Forms.Control)">
4013 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsAccessible" /> is true.</summary>
4014 <param name="actual">Instance containing the expected value.</param>
4015 </member>
4016 <member name="M:MbUnit.Framework.ControlAssert.IsDisposed(System.Windows.Forms.Control)">
4017 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsDisposed" /> is true.</summary>
4018 <param name="actual">Instance containing the expected value.</param>
4019 </member>
4020 <member name="M:MbUnit.Framework.ControlAssert.IsHandleCreated(System.Windows.Forms.Control)">
4021 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsHandleCreated" /> is true.</summary>
4022 <param name="actual">Instance containing the expected value.</param>
4023 </member>
4024 <member name="M:MbUnit.Framework.ControlAssert.IsNotandleCreated(System.Windows.Forms.Control)">
4025 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsHandleCreated" /> is false.</summary>
4026 <param name="actual">Instance containing the expected value.</param>
4027 </member>
4028 <member name="M:MbUnit.Framework.ControlAssert.IsNotccessible(System.Windows.Forms.Control)">
4029 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsAccessible" /> is false.</summary>
4030 <param name="actual">Instance containing the expected value.</param>
4031 </member>
4032 <member name="M:MbUnit.Framework.ControlAssert.IsNotisposed(System.Windows.Forms.Control)">
4033 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsDisposed" /> is false.</summary>
4034 <param name="actual">Instance containing the expected value.</param>
4035 </member>
4036 <member name="M:MbUnit.Framework.ControlAssert.NotAllowDrop(System.Windows.Forms.Control)">
4037 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AllowDrop" /> is false.</summary>
4038 <param name="actual">Instance containing the expected value.</param>
4039 </member>
4040 <member name="M:MbUnit.Framework.ControlAssert.NotCanFocus(System.Windows.Forms.Control)">
4041 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanFocus" /> is false.</summary>
4042 <param name="actual">Instance containing the expected value.</param>
4043 </member>
4044 <member name="M:MbUnit.Framework.ControlAssert.NotCanSelect(System.Windows.Forms.Control)">
4045 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanSelect" /> is false.</summary>
4046 <param name="actual">Instance containing the expected value.</param>
4047 </member>
4048 <member name="M:MbUnit.Framework.ControlAssert.NotCapture(System.Windows.Forms.Control)">
4049 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Capture" /> is false.</summary>
4050 <param name="actual">Instance containing the expected value.</param>
4051 </member>
4052 <member name="M:MbUnit.Framework.ControlAssert.NotCausesValidation(System.Windows.Forms.Control)">
4053 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CausesValidation" /> is false.</summary>
4054 <param name="actual">Instance containing the expected value.</param>
4055 </member>
4056 <member name="M:MbUnit.Framework.ControlAssert.NotContainsFocus(System.Windows.Forms.Control)">
4057 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContainsFocus" /> is false.</summary>
4058 <param name="actual">Instance containing the expected value.</param>
4059 </member>
4060 <member name="M:MbUnit.Framework.ControlAssert.NotCreated(System.Windows.Forms.Control)">
4061 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Created" /> is false.</summary>
4062 <param name="actual">Instance containing the expected value.</param>
4063 </member>
4064 <member name="M:MbUnit.Framework.ControlAssert.NotDisposing(System.Windows.Forms.Control)">
4065 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Disposing" /> is false.</summary>
4066 <param name="actual">Instance containing the expected value.</param>
4067 </member>
4068 <member name="M:MbUnit.Framework.ControlAssert.NotEnabled(System.Windows.Forms.Control)">
4069 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Enabled" /> is false.</summary>
4070 <param name="actual">Instance containing the expected value.</param>
4071 </member>
4072 <member name="M:MbUnit.Framework.ControlAssert.NotFocused(System.Windows.Forms.Control)">
4073 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Focused" /> is false.</summary>
4074 <param name="actual">Instance containing the expected value.</param>
4075 </member>
4076 <member name="M:MbUnit.Framework.ControlAssert.NotHasChildren(System.Windows.Forms.Control)">
4077 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.HasChildren" /> is false.</summary>
4078 <param name="actual">Instance containing the expected value.</param>
4079 </member>
4080 <member name="M:MbUnit.Framework.ControlAssert.NotInvokeRequired(System.Windows.Forms.Control)">
4081 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> is false.</summary>
4082 <param name="actual">Instance containing the expected value.</param>
4083 </member>
4084 <member name="M:MbUnit.Framework.ControlAssert.NotRecreatingHandle(System.Windows.Forms.Control)">
4085 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.RecreatingHandle" /> is false.</summary>
4086 <param name="actual">Instance containing the expected value.</param>
4087 </member>
4088 <member name="M:MbUnit.Framework.ControlAssert.NotTabStop(System.Windows.Forms.Control)">
4089 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabStop" /> is false.</summary>
4090 <param name="actual">Instance containing the expected value.</param>
4091 </member>
4092 <member name="M:MbUnit.Framework.ControlAssert.NotVisible(System.Windows.Forms.Control)">
4093 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Visible" /> is false.</summary>
4094 <param name="actual">Instance containing the expected value.</param>
4095 </member>
4096 <member name="M:MbUnit.Framework.ControlAssert.RecreatingHandle(System.Windows.Forms.Control)">
4097 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.RecreatingHandle" /> is true.</summary>
4098 <param name="actual">Instance containing the expected value.</param>
4099 </member>
4100 <member name="M:MbUnit.Framework.ControlAssert.TabStop(System.Windows.Forms.Control)">
4101 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabStop" /> is true.</summary>
4102 <param name="actual">Instance containing the expected value.</param>
4103 </member>
4104 <member name="M:MbUnit.Framework.ControlAssert.Visible(System.Windows.Forms.Control)">
4105 <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Visible" /> is true.</summary>
4106 <param name="actual">Instance containing the expected value.</param>
4107 </member>
4108 <member name="T:MbUnit.Framework.CopyAttribute">
4109 <summary>Tags a class whose assembly file and associated pdb file should be copied elsewhere</summary>
4110 </member>
4111 <member name="P:MbUnit.Framework.CopyAttribute.Destination">
4112 <summary>Gets or sets the place for the files to be copied to.</summary>
4113 <value>The new path for the files</value>
4114 </member>
4115 <member name="P:MbUnit.Framework.CopyAttribute.Files">
4116 <summary>Gets the files to be copied.</summary>
4117 <value>An array of the files being copied</value>
4118 </member>
4119 <member name="T:MbUnit.Framework.CopyToProviderAttribute">
4120 <summary>Tags a method that provides a new <see cref="T:System.Collections.IEnumerable" /> object containing data for testing</summary>
4121 </member>
4122 <member name="T:MbUnit.Framework.CurrentFixtureAttribute">
4123 <summary>Used in conjunction, e.g. with an <see cref="T:MbUnit.Core.AutoRunner" /> to identify only the tests that it should run This class cannot be inherited.</summary>
4124 </member>
4125 <member name="T:MbUnit.Framework.DataAssert">
4126 <summary>Assertion class for Database related object. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4127 </member>
4128 <member name="M:MbUnit.Framework.DataAssert.AreDataEqual(System.Data.DataSet,System.Data.DataSet)">
4129 <summary>Assert that the data in two <see cref="T:System.Data.DataSet" />s are equal.</summary>
4130 <param name="expected">The expected <see cref="T:System.Data.DataSet" />.</param>
4131 <param name="actual">The actual <see cref="T:System.Data.DataSet" />.</param>
4132 </member>
4133 <member name="M:MbUnit.Framework.DataAssert.AreEqual(System.Data.DataColumn,System.Data.DataColumn)">
4134 <summary>Asserts that two <see cref="T:System.Data.DataColumn" /> are equal.</summary>
4135 <param name="expected">Expected <see cref="T:System.Data.DataColumn" /> instance.</param>
4136 <param name="actual">Actual <see cref="T:System.Data.DataColumn" /> instance.</param>
4137 </member>
4138 <member name="M:MbUnit.Framework.DataAssert.AreEqual(System.Data.DataRow,System.Data.DataRow)">
4139 <summary>Asserts that two <see cref="T:System.Data.DataRow" /> are equal.</summary>
4140 <param name="expected">Expected <see cref="T:System.Data.DataRow" /> instance.</param>
4141 <param name="actual">Actual <see cref="T:System.Data.DataRow" /> instance.</param>
4142 </member>
4143 <member name="M:MbUnit.Framework.DataAssert.AreEqual(System.DateTime,System.DateTime)">
4144 <summary>Asserts that two <see cref="T:System.DateTime" /> values are equal</summary>
4145 <param name="expected">The expected <see cref="T:System.DateTime" />.</param>
4146 <param name="actual">The actual <see cref="T:System.DateTime" />.</param>
4147 </member>
4148 <member name="M:MbUnit.Framework.DataAssert.AreEqual(System.Data.DataSet,System.Data.DataSet)">
4149 <summary>Assert that two <see cref="T:System.Data.DataSet" /> schemas and the data they contain are equal.</summary>
4150 <param name="expected">The expected <see cref="T:System.Data.DataSet" />.</param>
4151 <param name="actual">The actual <see cref="T:System.Data.DataSet" />.</param>
4152 </member>
4153 <member name="M:MbUnit.Framework.DataAssert.AreSchemasEqual(System.Data.DataSet,System.Data.DataSet)">
4154 <summary>Assert that two <see cref="T:System.Data.DataSet" /> schemas are equal.</summary>
4155 <param name="expected">The expected <see cref="T:System.Data.DataSet" />.</param>
4156 <param name="actual">The actual <see cref="T:System.Data.DataSet" />.</param>
4157 </member>
4158 <member name="T:MbUnit.Framework.DataFixtureAttribute">
4159 <summary>The DataFixture tags a test class that will be using provider classes to push values to the tests it contains. This class cannot be inherited.</summary>
4160 </member>
4161 <member name="M:MbUnit.Framework.DataFixtureAttribute.GetRun">
4162 <summary>Creates the execution logic</summary>
4163 <returns>A <see cref="T:MbUnit.Core.Runs.IRun" /> instance that represent the type test logic.</returns>
4164 </member>
4165 <member name="T:MbUnit.Framework.DataProviderAttribute">
4166 <summary>The DataProvider method attribute allows you to mark a method as your collection populator for tests.</summary>
4167 </member>
4168 <member name="P:MbUnit.Framework.DataProviderAttribute.ProviderType">
4169 <summary>Gets or sets <see cref="T:System.Type" /> of object to return to tests expecting data</summary>
4170 <value>The <see cref="T:System.Type" /> of object to return to tests expecting data</value>
4171 </member>
4172 <member name="T:MbUnit.Framework.DataProviderFixtureDecoratorAttribute">
4173 <summary>Abstract class to derive (XML) DataProvider attribute classes from. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
4174 </member>
4175 <member name="M:MbUnit.Framework.DataProviderFixtureDecoratorAttribute.GetData">
4176 <summary>Gets the <see cref="T:System.Xml.XmlNodeList" /> to be used by the class tagged by this attribute.</summary>
4177 <returns>The <see cref="T:System.Xml.XmlNodeList" /> to be used by the class tagged by this attribute</returns>
4178 </member>
4179 <member name="T:MbUnit.Framework.DbRestoreInfoAttribute">
4180 <summary>Abstract class describing attribute used to tag a class and declare a backup be restored to it before the test is executed on request by tagging a test method with a <see cref="T:MbUnit.Framework.RestoreDatabaseAttribute" />. This class represents the generic case. The specific implementation for SQL Server is <see cref="T:MbUnit.Framework.SqlRestoreInfoAttribute" />This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
4181 </member>
4182 <member name="P:MbUnit.Framework.DbRestoreInfoAttribute.BackupDestination">
4183 <summary>Gets the location of the backup file.</summary>
4184 <value>The location of the backup file.</value>
4185 </member>
4186 <member name="P:MbUnit.Framework.DbRestoreInfoAttribute.BackupDevice">
4187 <summary>Gets the <see cref="T:TestFu.Data.DbBackupDevice">type</see> of backup device.</summary>
4188 <value>The <see cref="T:TestFu.Data.DbBackupDevice">type</see> of backup device.</value>
4189 </member>
4190 <member name="P:MbUnit.Framework.DbRestoreInfoAttribute.ConnectionString">
4191 <summary>Gets the connection string for the database to be restored.</summary>
4192 <value>The connection string.</value>
4193 </member>
4194 <member name="P:MbUnit.Framework.DbRestoreInfoAttribute.DatabaseName">
4195 <summary>Gets the name of the database to be restored.</summary>
4196 <value>The name of the database.</value>
4197 </member>
4198 <member name="P:MbUnit.Framework.DbRestoreInfoAttribute.FactoryType">
4199 <summary>Gets the factory class derived from <see cref="T:TestFu.Data.IDbFactory" /> that will execute the restore</summary>
4200 <value>The factory class derived from <see cref="T:TestFu.Data.IDbFactory" /> that will execute the restore</value>
4201 </member>
4202 <member name="M:MbUnit.Framework.DbRestoreInfoAttribute.CreateFactory">
4203 <summary>Creates and returns an instance of the factory class derived from <see cref="T:TestFu.Data.IDbFactory" /> that will execute the restore.</summary>
4204 <returns>An instance of the factory class</returns>
4205 </member>
4206 <member name="M:MbUnit.Framework.DbRestoreInfoAttribute.GetInfo(System.Type)">
4207 <summary>Gets the custom attributes on the attribute</summary>
4208 <param name="t">The attribute <see cref="T:System.Type" />.</param>
4209 <returns>The custom attributes (database information) for the backup</returns>
4210 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="t" /> is null</exception>
4211 <exception cref="T:MbUnit.Framework.Exceptions.MissingDbInfoException">Thrown if no database information can be found attached to the attribute taggign the class</exception>
4212 </member>
4213 <member name="T:MbUnit.Framework.DependsOnAttribute">
4214 <summary>Use this attribute to identify the parent text fixture class or classes whose tests must execute successfully before the tests in this class are executed This class cannot be inherited.</summary>
4215 </member>
4216 <member name="P:MbUnit.Framework.DependsOnAttribute.ParentFixtureType">
4217 <summary>Gets or sets the type of the parent fixture.</summary>
4218 <value>The type of the parent fixture class.</value>
4219 </member>
4220 <member name="T:MbUnit.Framework.DurationAttribute">
4221 <summary>Use this attribute to specify that the tagged method should return in a given number of seconds or fail otherwise.</summary>
4222 </member>
4223 <member name="P:MbUnit.Framework.DurationAttribute.MaxDuration">
4224 <summary>Gets the maximum duration set by the tag.</summary>
4225 <value>Maximum test duration in seconds.</value>
4226 </member>
4227 <member name="P:MbUnit.Framework.DurationAttribute.MinDuration">
4228 <summary>Gets the minimum duration set by the tag.</summary>
4229 <value>Minimum test duration in seconds.</value>
4230 </member>
4231 <member name="M:MbUnit.Framework.DurationAttribute.GetInvoker(MbUnit.Core.Invokers.IRunInvoker)">
4232 <summary>Returns the invoker class to run the test with the given duration parameters.</summary>
4233 <param name="invoker">The invoker currently set to run the test.</param>
4234 <returns>A new <see cref="T:MbUnit.Core.Invokers.DurationRunInvoker" /> object wrapping <paramref name="invoker" /></returns>
4235 </member>
4236 <member name="T:MbUnit.Framework.EnumerationFixtureAttribute">
4237 <summary>Tags a class as a specialized fixture for testing classes derived from <see cref="T:System.Collections.IEnumerable" /> or <see cref="T:System.Collections.IEnumerator" />. The fixture class will automatically test that objects returned by test methods within the class tagged with either <see cref="T:MbUnit.Framework.DataProviderAttribute" /> or <see cref="T:MbUnit.Framework.CopyToProviderAttribute" /> follow the enumerator specification. This class cannot be inherited.</summary>
4238 </member>
4239 <member name="M:MbUnit.Framework.EnumerationFixtureAttribute.GetRun">
4240 <summary>Gets the test runner class defining all the test to be run within the tagged fixture class.</summary>
4241 <returns>A <see cref="T:MbUnit.Core.Runs.SequenceRun" /> object</returns>
4242 </member>
4243 <member name="T:MbUnit.Framework.ExpectedArgumentExceptionAttribute">
4244 <summary>Subtype of the <see cref="T:MbUnit.Framework.ExpectedExceptionAttribute" /> that automatically expects an <see cref="T:System.ArgumentException" />. This class cannot be inherited.</summary>
4245 </member>
4246 <member name="T:MbUnit.Framework.ExpectedArgumentNullExceptionAttribute">
4247 <summary>Subtype of the <see cref="T:MbUnit.Framework.ExpectedExceptionAttribute" /> that automatically expects an <see cref="T:System.ArgumentNullException" />. This class cannot be inherited.</summary>
4248 </member>
4249 <member name="T:MbUnit.Framework.ExpectedExceptionAttribute">
4250 <summary>Tags a test method to indicate that it should throw an exception.</summary>
4251 </member>
4252 <member name="P:MbUnit.Framework.ExpectedExceptionAttribute.ExceptionType">
4253 <summary>The expected exception.</summary>
4254 <value>The type of the exception expected to be thrown.</value>
4255 </member>
4256 <member name="P:MbUnit.Framework.ExpectedExceptionAttribute.ExpectedMessage">
4257 <summary>The expected message text.</summary>
4258 <value>The expected message.</value>
4259 </member>
4260 <member name="P:MbUnit.Framework.ExpectedExceptionAttribute.InnerExceptionType">
4261 <summary>The expected inner exception.</summary>
4262 <value>The type of the expected inner exception.</value>
4263 </member>
4264 <member name="M:MbUnit.Framework.ExpectedExceptionAttribute.GetInvoker(MbUnit.Core.Invokers.IRunInvoker)">
4265 <summary>Gets the test runner class that knows how to invoke the test and expect the specified exception</summary>
4266 <param name="invoker">The invoker currently invoking the test.</param>
4267 <returns>A new <see cref="T:MbUnit.Core.Invokers.ExpectedExceptionRunInvoker" /> object wrapping <paramref name="invoker" /></returns>
4268 </member>
4269 <member name="T:MbUnit.Framework.ExpectedExceptionTestCase">
4270 <summary>Used when dynamically adding <see cref="T:MbUnit.Framework.ITestCase" />s that expect an exception to a <see cref="T:MbUnit.Framework.TestSuite" />This class cannot be inherited.</summary>
4271 </member>
4272 <member name="P:MbUnit.Framework.ExpectedExceptionTestCase.ExceptionType">
4273 <summary>Returns the <see cref="T:System.Type" /> of the exception expected to be thrown.</summary>
4274 <value>The <see cref="T:System.Type" /> of the exception expected to be thrown.</value>
4275 </member>
4276 <member name="M:MbUnit.Framework.ExpectedExceptionTestCase.Invoke(System.Object,System.Collections.IList)">
4277 <summary>Invokes the test case expecting an exception</summary>
4278 <param name="o">The <see cref="T:MbUnit.Framework.ITestCase" /> to run</param>
4279 <param name="args">Parameter values for the test case</param>
4280 <returns>null</returns>
4281 <exception cref="T:MbUnit.Core.Exceptions.ExceptionNotThrownException">Thrown if the expected exception does not occur</exception>
4282 </member>
4283 <member name="T:MbUnit.Framework.ExplicitAttribute">
4284 <summary>Tags test fixture classes and individual test methods to not be run unless explicitly selected, either using the GUI or command line arguments. This class cannot be inherited.</summary>
4285 </member>
4286 <member name="M:MbUnit.Framework.ExplicitAttribute.GetInvoker(MbUnit.Core.Invokers.IRunInvoker)">
4287 <summary>Returns the invoker class to run the test or test fixture onlyif explicitly requested.</summary>
4288 <param name="invoker">The invoker currently set to run the test.</param>
4289 <returns>A new <see cref="T:MbUnit.Core.Invokers.ExplicitRunInvoker" /> object wrapping <paramref name="invoker" /></returns>
4290 </member>
4291 <member name="T:MbUnit.Framework.ExtractResourceAttribute">
4292 <summary>Test methods annotated with this attribute will have the specified embedded resource extracted.</summary>
4293 </member>
4294 <member name="P:MbUnit.Framework.ExtractResourceAttribute.Destination">
4295 <summary>The destination file to write the resource to. Should be a path.</summary>
4296 </member>
4297 <member name="P:MbUnit.Framework.ExtractResourceAttribute.ResourceCleanup">
4298 <summary>Whether or not to cleanup the resource.</summary>
4299 </member>
4300 <member name="P:MbUnit.Framework.ExtractResourceAttribute.ResourceName">
4301 <summary>The full name of the resource. Use Reflector to find this out if you don't know.</summary>
4302 </member>
4303 <member name="P:MbUnit.Framework.ExtractResourceAttribute.Stream">
4304 <summary>The current resource stream if using the attribute without specifying a destination.</summary>
4305 </member>
4306 <member name="P:MbUnit.Framework.ExtractResourceAttribute.Type">
4307 <summary>The type within the assembly that contains the embedded resource.</summary>
4308 </member>
4309 <member name="M:MbUnit.Framework.ExtractResourceAttribute.GetInvoker(MbUnit.Core.Invokers.IRunInvoker)">
4310 <summary>Returns the invoker class to run the test with the specified embedded resource extracted.</summary>
4311 <param name="invoker">The invoker currently set to run the test.</param>
4312 <returns>A new <see cref="T:MbUnit.Framework.ExtractResourceAttribute.ExtractResourceRunInvoker" /> object wrapping <paramref name="invoker" /></returns>
4313 </member>
4314 <member name="T:MbUnit.Framework.FactoryAttribute">
4315 <summary>Used with Combinatorial Tests to indicate how to generate values for a test parameter. Can be tagged onto a parameter directly or a method which yields values. This class cannot be inherited.</summary>
4316 </member>
4317 <member name="P:MbUnit.Framework.FactoryAttribute.FactoredType">
4318 <summary>Returns the <see cref="T:System.Type" /> of the factory-yielded values.</summary>
4319 <value>The <see cref="T:System.Type" /> of the values.</value>
4320 </member>
4321 <member name="T:MbUnit.Framework.FileAssert">
4322 <summary>Class containing generic assert methods for the comparison of <see cref="T:System.IO.FileInfo">files</see> and <see cref="T:System.IO.Stream">streams</see>. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4323 </member>
4324 <member name="M:MbUnit.Framework.FileAssert.AreEqual(System.String,System.String)">
4325 <summary>Verifies that the <paramref name="actualPath" /> to a file is the same as the <paramref name="expectedPath" /></summary>
4326 <param name="expectedPath">The expected path.</param>
4327 <param name="actualPath">The actual path.</param>
4328 </member>
4329 <member name="M:MbUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.String)">
4330 <summary>Verifies that the path to the <paramref name="expected" /> file identified as a <see cref="T:System.IO.FileInfo" /> is the same as the actual <paramref name="filePath" /></summary>
4331 <param name="expected">A <see cref="T:System.IO.FileInfo" /> object representing the expected file</param>
4332 <param name="filePath">The actual file path in the test as a string.</param>
4333 </member>
4334 <member name="M:MbUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo)">
4335 <summary>Verifies that two files have the same length and contents as each other.</summary>
4336 <param name="expected">
4337 <see cref="T:System.IO.FileInfo" /> object representing the expected file and contents</param>
4338 <param name="actual">
4339 <see cref="T:System.IO.FileInfo" /> object representing the actual file and contents</param>
4340 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if either <see cref="T:System.IO.FileInfo" /> object is null</exception>
4341 </member>
4342 <member name="M:MbUnit.Framework.FileAssert.AreStreamContentEqual(System.IO.Stream,System.IO.Stream)">
4343 <summary>Verifies that two <see cref="T:System.IO.Stream" />s are readable and have the same contents as each other.</summary>
4344 <param name="expected">
4345 <see cref="T:System.IO.Stream" /> object representing the expected results</param>
4346 <param name="actual">
4347 <see cref="T:System.IO.Stream" /> object representing the actual results so far in the test</param>
4348 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if either <see cref="T:System.IO.Stream" /> object is null</exception>
4349 </member>
4350 <member name="M:MbUnit.Framework.FileAssert.Exists(System.String)">
4351 <summary>Verifies that the file specified by <paramref name="fileName" /> exists</summary>
4352 <param name="fileName">The path of the file.</param>
4353 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="fileName" /> is null</exception>
4354 </member>
4355 <member name="M:MbUnit.Framework.FileAssert.NotExists(System.String)">
4356 <summary>Verifies that the file specified by <paramref name="fileName" /> does not exist</summary>
4357 <param name="fileName">The path of the file.</param>
4358 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="fileName" /> is null</exception>
4359 </member>
4360 <member name="T:MbUnit.Framework.FillAttribute">
4361 <summary>Used to tag methods within <see cref="T:MbUnit.Framework.CollectionOrderFixtureAttribute">test fixtures implementing the collection order pattern</see> that fill collections with data.</summary>
4362 </member>
4363 <member name="T:MbUnit.Framework.FixtureCategoryAttribute">
4364 <summary>Used to tag a test fixture class with a category for use in the MbUnit GUi or console runner</summary>
4365 </member>
4366 <member name="P:MbUnit.Framework.FixtureCategoryAttribute.Category">
4367 <summary>Gets or sets the test fixture category.</summary>
4368 <value>The test fixture category.</value>
4369 </member>
4370 <member name="T:MbUnit.Framework.ForEachTestAttribute">
4371 <summary>Used to tag a test method to specify the information contained in an XML file that should be used as parameters for that test. To be used in conjunction with the <see cref="T:MbUnit.Framework.DataFixtureAttribute" /> and <see cref="T:MbUnit.Framework.XmlDataProviderAttribute" />. This class cannot be inherited.</summary>
4372 </member>
4373 <member name="P:MbUnit.Framework.ForEachTestAttribute.DataType">
4374 <summary>Gets or sets the class <see cref="T:System.Type" /> the xml data will be deserialized into for use in your tests</summary>
4375 <value>The class <see cref="T:System.Type" /> for your tests.</value>
4376 </member>
4377 <member name="P:MbUnit.Framework.ForEachTestAttribute.IsDeserialized">
4378 <summary>Gets a value indicating whether this instance is deserialized.</summary>
4379 <value>
4380 <c>true</c> if this instance is deserialized; otherwise, <c>false</c>.</value>
4381 </member>
4382 <member name="P:MbUnit.Framework.ForEachTestAttribute.XPath">
4383 <summary>Gets or sets the XPath to the data for the test.</summary>
4384 <value>The XPath string.</value>
4385 <exception cref="T:System.ArgumentNullException">Thrown if the value is null</exception>
4386 </member>
4387 <member name="M:MbUnit.Framework.ForEachTestAttribute.Deserialize(System.Xml.XmlNode)">
4388 <summary>Deserializes the specified XML node for use in a test.</summary>
4389 <param name="node">The node to deserialize.</param>
4390 <returns>An object of the type specified by <see cref="P:MbUnit.Framework.ForEachTestAttribute.DataType" /></returns>
4391 </member>
4392 <member name="T:MbUnit.Framework.GrammarAttribute">
4393 <summary>Identifies the tagged method as a Production Grammar This class cannot be inherited.</summary>
4394 </member>
4395 <member name="T:MbUnit.Framework.GrammarFixtureAttribute">
4396 <summary>Identifies the tagged class as a Production Grammar Fixture This class cannot be inherited.</summary>
4397 </member>
4398 <member name="M:MbUnit.Framework.GrammarFixtureAttribute.GetRun">
4399 <summary>Returns a new instance of a <see cref="T:MbUnit.Framework.GrammarFixtureAttribute.ProductionGrammarRun" /> class</summary>
4400 </member>
4401 <member name="T:MbUnit.Framework.GrammarFixtureAttribute.ProductionGrammarRun">
4402 <summary>Represents a run of tests as generated according to the production grammar which provides a test method with data</summary>
4403 </member>
4404 <member name="P:MbUnit.Framework.GrammarFixtureAttribute.ProductionGrammarRun.IsTest">
4405 <summary>Gets a value indicating whether the run is considered as a test or not.</summary>
4406 <value>true if the <see cref="T:MbUnit.Framework.GrammarFixtureAttribute.ProductionGrammarRun" /> instance is a test</value>
4407 </member>
4408 <member name="P:MbUnit.Framework.GrammarFixtureAttribute.ProductionGrammarRun.Name">
4409 <summary>Gets a descriptive name of the <see cref="T:MbUnit.Framework.GrammarFixtureAttribute.ProductionGrammarRun" /></summary>
4410 <value>A descriptive name of the <see cref="T:MbUnit.Framework.GrammarFixtureAttribute.ProductionGrammarRun" /></value>
4411 </member>
4412 <member name="M:MbUnit.Framework.GrammarFixtureAttribute.ProductionGrammarRun.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
4413 <summary>Populates the <see cref="T:MbUnit.Core.Invokers.RunInvokerTree" /> invoker graph with <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> generated by the run.</summary>
4414 <param name="tree">Invoker tree</param>
4415 <param name="parent">parent vertex</param>
4416 <param name="t">class type that is marked by the run</param>
4417 </member>
4418 <member name="T:MbUnit.Framework.GrammarFixtureAttribute.ProductionGrammarRunInvoker">
4419 <summary>A class that knows how to invoke a test using input from a production grammar.</summary>
4420 </member>
4421 <member name="P:MbUnit.Framework.GrammarFixtureAttribute.ProductionGrammarRunInvoker.Name">
4422 <summary>Returns the name of the test based on the seed method and grammar method names.</summary>
4423 <value>The name.</value>
4424 </member>
4425 <member name="M:MbUnit.Framework.GrammarFixtureAttribute.ProductionGrammarRunInvoker.Execute(System.Object,System.Collections.IList)">
4426 <summary>Executes the specified test <paramref name="o" /></summary>
4427 <param name="o">The test.</param>
4428 <param name="args">The parameters for the test.</param>
4429 <returns>null</returns>
4430 <exception cref="T:System.ArgumentException">Thrown if <see cref="F:MbUnit.Framework.GrammarFixtureAttribute.ProductionGrammarRunInvoker.grammarMethod" /> does not return an <see cref="T:TestFu.Grammars.IGrammar" /></exception>
4431 </member>
4432 <member name="T:MbUnit.Framework.IgnoreAttribute">
4433 <summary>
4434 <para> Indicates that a test is to be ignored by the framework and will not be run. The test will still appear in test reports along with the reason that it was ignored, if provided. </para>
4435 <para> This attribute can be used to disable tests that are broken or expensive without commenting them out or removing them from the source code. </para>This class cannot be inherited.</summary>
4436 </member>
4437 <member name="M:MbUnit.Framework.IgnoreAttribute.GetInvoker(MbUnit.Core.Invokers.IRunInvoker)">
4438 <summary>Returns the invoker class to run the test with the given duration parameters.</summary>
4439 <param name="wrapper">The invoker currently set to run the test.</param>
4440 <returns>A new <see cref="T:MbUnit.Core.Invokers.IgnoreRunInvoker" /> object wrapping <paramref name="wrapper" /></returns>
4441 </member>
4442 <member name="T:MbUnit.Framework.ImportanceAttribute">
4443 <summary>Associates a <see cref="T:MbUnit.Framework.TestImportance" /> with a test fixture, test method, test parameter or other test component.</summary>
4444 </member>
4445 <member name="P:MbUnit.Framework.ImportanceAttribute.Importance">
4446 <summary>Gets the importance.</summary>
4447 <value>The importance.</value>
4448 </member>
4449 <member name="M:MbUnit.Framework.ImportanceAttribute.ToString">
4450 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:MbUnit.Framework.TestImportance" />.</summary>
4451 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:MbUnit.Framework.TestImportance" />.</returns>
4452 </member>
4453 <member name="T:MbUnit.Framework.IndexerProviderAttribute">
4454 <summary>Tags a method that returns an object which can be iterated over using a class implementing <see cref="T:MbUnit.Framework.IBidirectionalIterator" /></summary>
4455 </member>
4456 <member name="P:MbUnit.Framework.IndexerProviderAttribute.First">
4457 <summary>Gets or sets the first value for the index.</summary>
4458 <value>The first value for the index.</value>
4459 </member>
4460 <member name="P:MbUnit.Framework.IndexerProviderAttribute.IndexType">
4461 <summary>Gets or sets the type of the index.</summary>
4462 <value>The type of the index.</value>
4463 </member>
4464 <member name="P:MbUnit.Framework.IndexerProviderAttribute.Iterator">
4465 <summary>Gets the iterator.</summary>
4466 <value>The iterator.</value>
4467 </member>
4468 <member name="P:MbUnit.Framework.IndexerProviderAttribute.IteratorType">
4469 <summary>Gets or sets the type of the iterator.</summary>
4470 <value>The type of the iterator.</value>
4471 </member>
4472 <member name="P:MbUnit.Framework.IndexerProviderAttribute.Last">
4473 <summary>Gets or sets the last value for the index.</summary>
4474 <value>The last value for the index.</value>
4475 </member>
4476 <member name="T:MbUnit.Framework.InformationAttribute">
4477 <summary>Derive from this class to tag any class, method or property and associate information with it to be picked up by console or GUI test runners. For example, author name and test importance</summary>
4478 </member>
4479 <member name="T:MbUnit.Framework.IntIterator">
4480 <summary>Simple class implementing <see cref="T:MbUnit.Framework.IBidirectionalIterator" /> that returns the next or previous integer in sequence</summary>
4481 </member>
4482 <member name="M:MbUnit.Framework.IntIterator.Decrement(System.Int32)">
4483 <summary>Decrements the specified integer.</summary>
4484 <param name="o">The current integer.</param>
4485 <returns>The next integer in sequence</returns>
4486 </member>
4487 <member name="M:MbUnit.Framework.IntIterator.Increment(System.Int32)">
4488 <summary>Increments the specified integer.</summary>
4489 <param name="o">The current integer.</param>
4490 <returns>The next integer in sequence</returns>
4491 </member>
4492 <member name="T:MbUnit.Framework.ManualTester">
4493 <summary>Contains methods that will show a dialog to the tester that diplays steps to take. The dialog also lets the tester adding comments. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4494 </member>
4495 <member name="M:MbUnit.Framework.ManualTester.DisplayForm(System.String[])">
4496 <summary>Displays a dialog to the tester that diplays the test steps to take</summary>
4497 <param name="testSteps">The test steps.</param>
4498 </member>
4499 <member name="T:MbUnit.Framework.MethodTestCase">
4500 <summary>Represents a test case for a method on an object. It tests a method given a set of parameters if applicable. Can be added to a <see cref="T:MbUnit.Framework.TestSuite" />.</summary>
4501 </member>
4502 <member name="P:MbUnit.Framework.MethodTestCase.Description">
4503 <summary>Gets or sets the description of the test.</summary>
4504 <value>The description.</value>
4505 </member>
4506 <member name="P:MbUnit.Framework.MethodTestCase.Method">
4507 <summary>Gets the <see cref="T:System.Reflection.MethodInfo" /> object representing the method being tested.</summary>
4508 <value>The method.</value>
4509 </member>
4510 <member name="P:MbUnit.Framework.MethodTestCase.Name">
4511 <summary>Gets the name of the test.</summary>
4512 <value>The name.</value>
4513 </member>
4514 <member name="M:MbUnit.Framework.MethodTestCase.GetParameters">
4515 <summary>Gets the parameters for the method being tested.</summary>
4516 <returns>the parameters for the method being tested</returns>
4517 </member>
4518 <member name="M:MbUnit.Framework.MethodTestCase.Invoke(System.Object,System.Collections.IList)">
4519 <summary>Invokes the method on the specified object <paramref name="o" />.</summary>
4520 <param name="o">The object to invoke the method on</param>
4521 <param name="args">The arguments to send to the method.</param>
4522 </member>
4523 <member name="T:MbUnit.Framework.MethodTester">
4524 <summary>Used in strategies for testing classes and tests for null arguments. For more info, see <a href="http://blog.dotnetwiki.org/TestingTheArgumentNullExceptionWithMbUnit.aspx">this article</a></summary>
4525 </member>
4526 <member name="T:MbUnit.Framework.MultipleCultureAttribute">
4527 <summary>Used to tag any test method that needs to be run under a number of different cultures.</summary>
4528 </member>
4529 <member name="P:MbUnit.Framework.MultipleCultureAttribute.CultureString">
4530 <summary>Gets the list of cultures to be used in the test as a comma-delimited string</summary>
4531 <value>The list of cultures to be used in the test as a comma-delimited string</value>
4532 </member>
4533 <member name="P:MbUnit.Framework.MultipleCultureAttribute.Cultures">
4534 <summary>Gets the list of cultures to be used in the test as a StringCollection</summary>
4535 <value>The list of cultures to be used in the test as a StringCollection</value>
4536 </member>
4537 <member name="M:MbUnit.Framework.MultipleCultureAttribute.GetInvoker(MbUnit.Core.Invokers.IRunInvoker)">
4538 <summary>Returns the invoker class to run the test with the given duration parameters.</summary>
4539 <param name="invoker">The invoker currently set to run the test.</param>
4540 <returns>A new <see cref="T:MbUnit.Core.Invokers.MultipleCultureRunInvoker" /> object wrapping <paramref name="invoker" /></returns>
4541 </member>
4542 <member name="T:MbUnit.Framework.NamespaceProviderAttribute">
4543 <summary>Tags a class as a namespace provider. For use with a <see cref="T:MbUnit.Framework.TypeFixtureAttribute" /> tagged class instead of a <see cref="T:MbUnit.Framework.ProviderFactoryAttribute" /> tagged type.</summary>
4544 </member>
4545 <member name="P:MbUnit.Framework.NamespaceProviderAttribute.FactoredType">
4546 <summary>Gets or sets the factored type.</summary>
4547 <value>The factored type.</value>
4548 </member>
4549 <member name="P:MbUnit.Framework.NamespaceProviderAttribute.Namespace">
4550 <summary>Gets or sets the namespace.</summary>
4551 <value>The namespace.</value>
4552 </member>
4553 <member name="P:MbUnit.Framework.NamespaceProviderAttribute.Recurse">
4554 <summary>Gets or sets a value indicating whether this <see cref="T:MbUnit.Framework.NamespaceProviderAttribute" /> is recursive.</summary>
4555 <value>
4556 <c>true</c> if recursive; otherwise, <c>false</c>.</value>
4557 </member>
4558 <member name="P:MbUnit.Framework.NamespaceProviderAttribute.TypeToAssembly">
4559 <summary>Gets or sets the assembly type.</summary>
4560 <value>The assembly type.</value>
4561 </member>
4562 <member name="M:MbUnit.Framework.NamespaceProviderAttribute.GetRun(System.Type)">
4563 <summary>Gets the test runner class defining all the test to be run within the tagged fixture class.</summary>
4564 <param name="decoratedType">Type of the decorated.</param>
4565 <returns>An <see cref="T:MbUnit.Core.Runs.AssemblyProviderRun" /> object</returns>
4566 </member>
4567 <member name="T:MbUnit.Framework.NotInheritedExpectedExceptionAttribute">
4568 <summary>In the case where your test class inherits test methods from a parent class, use this tag to indicate that the test in the subclass should expect a different type of exception</summary>
4569 </member>
4570 <member name="T:MbUnit.Framework.NullableAttributeAttribute">
4571 <summary>Tag your assembly with this to identify the class you've created to identify parameters in your test methods that can be null. This class cannot be inherited.</summary>
4572 </member>
4573 <member name="P:MbUnit.Framework.NullableAttributeAttribute.NullableType">
4574 <summary>Gets or sets the type of the attribute class to identify nullable parameters</summary>
4575 <value>The type of the attribute class to identify nullable parameters</value>
4576 </member>
4577 <member name="M:MbUnit.Framework.NullableAttributeAttribute.GetAttribute(System.Type)">
4578 <summary>Returns the type of the <see cref="T:MbUnit.Framework.NullableAttributeAttribute" /> for the assembly containing the current method</summary>
4579 <param name="t">The class containing the method being tested</param>
4580 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="t" /> is null</exception>
4581 </member>
4582 <member name="T:MbUnit.Framework.PerfAssert">
4583 <summary>Performance Assertion class This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4584 </member>
4585 <member name="M:MbUnit.Framework.PerfAssert.Duration(System.Double)">
4586 <summary>Creates a countdown timer that will assert if execution time exceeds maximum duration.</summary>
4587 <param name="maxDuration">Maximum duration for the test in seconds</param>
4588 <returns>A <see cref="T:MbUnit.Framework.CountDownTimer" /> that knows the <paramref name="maxDuration" /> of the test</returns>
4589 <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="maxDuration" /> is not greater than 0</exception>
4590 </member>
4591 <member name="T:MbUnit.Framework.PerfCounterAttribute">
4592 <summary>Tags a test fixture class or test method with implicit assertions about the values of a performance counter on your machine.</summary>
4593 </member>
4594 <member name="P:MbUnit.Framework.PerfCounterAttribute.CategoryName">
4595 <summary>Gets the name of the performance category.</summary>
4596 <value>The name of the category.</value>
4597 </member>
4598 <member name="P:MbUnit.Framework.PerfCounterAttribute.CounterName">
4599 <summary>Gets the name of the performance counter being checked.</summary>
4600 <value>The name of the performance counter being checked.</value>
4601 </member>
4602 <member name="P:MbUnit.Framework.PerfCounterAttribute.InstanceName">
4603 <summary>Gets or sets the instance name of the performance counter</summary>
4604 <value>The instance name of the performance counter</value>
4605 </member>
4606 <member name="P:MbUnit.Framework.PerfCounterAttribute.MachineName">
4607 <summary>Gets or sets the name of the machine the counter is running on. Default value is the local machine</summary>
4608 <value>The name of the machine.</value>
4609 </member>
4610 <member name="P:MbUnit.Framework.PerfCounterAttribute.MaxValue">
4611 <summary>Gets the maximum value of the counter.</summary>
4612 <value>The maximum value of the counter.</value>
4613 </member>
4614 <member name="P:MbUnit.Framework.PerfCounterAttribute.MinValue">
4615 <summary>Gets or sets the minimum value of the counter.</summary>
4616 <value>The minimum value of the counter.</value>
4617 </member>
4618 <member name="P:MbUnit.Framework.PerfCounterAttribute.Relative">
4619 <summary>Gets or sets a value indicating whether the counter measurement should be calculated relative to its original value.</summary>
4620 <value>
4621 <c>true</c> if relative; otherwise, <c>false</c>.</value>
4622 </member>
4623 <member name="M:MbUnit.Framework.PerfCounterAttribute.GetInvoker(MbUnit.Core.Invokers.IRunInvoker)">
4624 <summary>Returns the invoker class to run the test with the given duration parameters.</summary>
4625 <param name="wrapper">The invoker currently set to run the test.</param>
4626 <returns>A new <see cref="T:MbUnit.Framework.PerfCounterAttribute.PerfCounterRunInvoker" /> object wrapping <paramref name="wrapper" /></returns>
4627 </member>
4628 <member name="T:MbUnit.Framework.PerfCounterAttribute.PerfCounterRunInvoker">
4629 <summary>Class that understands how to invoke a test given and monitor a performance counter nominated by a <see cref="T:MbUnit.Framework.PerfCounterAttribute" /> tagging the test method</summary>
4630 </member>
4631 <member name="M:MbUnit.Framework.PerfCounterAttribute.PerfCounterRunInvoker.Execute(System.Object,System.Collections.IList)">
4632 <summary>Executes the specified test.</summary>
4633 <param name="o">The test.</param>
4634 <param name="args">The arguments for the test.</param>
4635 </member>
4636 <member name="T:MbUnit.Framework.PerfCounterInfo">
4637 <summary>Class containing static helper methods for retrieving performance counters. For use in conjunction with <see cref="T:MbUnit.Framework.PerfCounterAttribute" /></summary>
4638 </member>
4639 <member name="M:MbUnit.Framework.PerfCounterInfo.NextValue(System.String,System.String,System.String)">
4640 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4641 <param name="categoryName">Name of the performance counter category.</param>
4642 <param name="counterName">Name of the performance counter to query.</param>
4643 <param name="instanceName">Name of the counter instance to query.</param>
4644 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4645 </member>
4646 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData">
4647 <summary>.Net CLR Data This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4648 </member>
4649 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbconnectionpools">
4650 <summary>Current number of pools associated with the process. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4651 </member>
4652 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbconnectionpools.NextValue">
4653 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4654 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4655 </member>
4656 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbpooledandnonpooledconnections">
4657 <summary>Current number of connections, pooled or not. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4658 </member>
4659 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbpooledandnonpooledconnections.NextValue">
4660 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4661 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4662 </member>
4663 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbpooledconnections">
4664 <summary>Current number of connections in all pools associated with the process. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4665 </member>
4666 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbpooledconnections.NextValue">
4667 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4668 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4669 </member>
4670 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientPeakNbpooledconnections">
4671 <summary>The highest number of connections in all pools since the process started. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4672 </member>
4673 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientPeakNbpooledconnections.NextValue">
4674 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4675 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4676 </member>
4677 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientTotalNbfailedcommands">
4678 <summary>The total number of command executes that have failed for any reason. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4679 </member>
4680 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientTotalNbfailedcommands.NextValue">
4681 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4682 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4683 </member>
4684 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientTotalNbfailedconnects">
4685 <summary>The total number of connection open attempts that have failed for any reason. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4686 </member>
4687 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientTotalNbfailedconnects.NextValue">
4688 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4689 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4690 </member>
4691 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions">
4692 <summary>Runtime statistics on CLR exception handling. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4693 </member>
4694 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofExcepsThrown">
4695 <summary>This counter displays the total number of exceptions thrown since the start of the application. These include both .NET exceptions and unmanaged exceptions that get converted into .NET exceptions e.g. null pointer reference exception in unmanaged code would get re-thrown in managed code as a .NET System.NullReferenceException; this counter includes both handled and unhandled exceptions. Exceptions that are re-thrown would get counted again. Exceptions should only occur in rare situations and not in the normal control flow of the program. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4696 </member>
4697 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofExcepsThrown.NextValue">
4698 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4699 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4700 </member>
4701 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofExcepsThrown.NextValue(System.String)">
4702 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4703 <param name="instanceName">Name of the counter instance to query.</param>
4704 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4705 </member>
4706 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofExcepsThrownsec">
4707 <summary>This counter displays the number of exceptions thrown per second. These include both .NET exceptions and unmanaged exceptions that get converted into .NET exceptions e.g. null pointer reference exception in unmanaged code would get re-thrown in managed code as a .NET System.NullReferenceException; this counter includes both handled and unhandled exceptions. Exceptions should only occur in rare situations and not in the normal control flow of the program; this counter was designed as an indicator of potential performance problems due to large (>100s) rate of exceptions thrown. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4708 </member>
4709 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofExcepsThrownsec.NextValue">
4710 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4711 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4712 </member>
4713 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofExcepsThrownsec.NextValue(System.String)">
4714 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4715 <param name="instanceName">Name of the counter instance to query.</param>
4716 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4717 </member>
4718 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofFilterssec">
4719 <summary>This counter displays the number of .NET exception filters executed per second. An exception filter evaluates whether an exception should be handled or not. This counter tracks the rate of exception filters evaluated; irrespective of whether the exception was handled or not. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4720 </member>
4721 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofFilterssec.NextValue">
4722 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4723 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4724 </member>
4725 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofFilterssec.NextValue(System.String)">
4726 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4727 <param name="instanceName">Name of the counter instance to query.</param>
4728 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4729 </member>
4730 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofFinallyssec">
4731 <summary>This counter displays the number of finally blocks executed per second. A finally block is guaranteed to be executed regardless of how the try block was exited. Only the finally blocks that are executed for an exception are counted; finally blocks on normal code paths are not counted by this counter. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4732 </member>
4733 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofFinallyssec.NextValue">
4734 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4735 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4736 </member>
4737 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofFinallyssec.NextValue(System.String)">
4738 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4739 <param name="instanceName">Name of the counter instance to query.</param>
4740 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4741 </member>
4742 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.ThrowToCatchDepthsec">
4743 <summary>This counter displays the number of stack frames traversed from the frame that threw the .NET exception to the frame that handled the exception per second. This counter resets to 0 when an exception handler is entered; so nested exceptions would show the handler to handler stack depth. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4744 </member>
4745 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.ThrowToCatchDepthsec.NextValue">
4746 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4747 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4748 </member>
4749 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.ThrowToCatchDepthsec.NextValue(System.String)">
4750 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4751 <param name="instanceName">Name of the counter instance to query.</param>
4752 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4753 </member>
4754 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop">
4755 <summary>Stats for CLR interop. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4756 </member>
4757 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofCcws">
4758 <summary>This counter displays the current number of Com-Callable-Wrappers (CCWs). A CCW is a proxy for the .NET managed object being referenced from unmanaged COM client(s). This counter was designed to indicate the number of managed objects being referenced by unmanaged COM code. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4759 </member>
4760 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofCcws.NextValue">
4761 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4762 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4763 </member>
4764 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofCcws.NextValue(System.String)">
4765 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4766 <param name="instanceName">Name of the counter instance to query.</param>
4767 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4768 </member>
4769 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop.Nbofmarshalling">
4770 <summary>This counter displays the total number of times arguments and return values have been marshaled from managed to unmanaged code and vice versa since the start of the application. This counter is not incremented if the stubs are inlined. (Stubs are responsible for marshalling arguments and return values). Stubs usually get inlined if the marshalling overhead is small. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4771 </member>
4772 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.Nbofmarshalling.NextValue">
4773 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4774 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4775 </member>
4776 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.Nbofmarshalling.NextValue(System.String)">
4777 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4778 <param name="instanceName">Name of the counter instance to query.</param>
4779 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4780 </member>
4781 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofStubs">
4782 <summary>This counter displays the current number of stubs created by the CLR. Stubs are responsible for marshalling arguments and return values from managed to unmanaged code and vice versa; during a COM Interop call or PInvoke call. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4783 </member>
4784 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofStubs.NextValue">
4785 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4786 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4787 </member>
4788 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofStubs.NextValue(System.String)">
4789 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4790 <param name="instanceName">Name of the counter instance to query.</param>
4791 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4792 </member>
4793 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofTlbexportssec">
4794 <summary>Reserved for future use. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4795 </member>
4796 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofTlbexportssec.NextValue">
4797 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4798 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4799 </member>
4800 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofTlbexportssec.NextValue(System.String)">
4801 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4802 <param name="instanceName">Name of the counter instance to query.</param>
4803 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4804 </member>
4805 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofTlbimportssec">
4806 <summary>Reserved for future use. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4807 </member>
4808 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofTlbimportssec.NextValue">
4809 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4810 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4811 </member>
4812 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofTlbimportssec.NextValue(System.String)">
4813 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4814 <param name="instanceName">Name of the counter instance to query.</param>
4815 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4816 </member>
4817 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit">
4818 <summary>Stats for CLR Jit. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4819 </member>
4820 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.IlBytesJittedsec">
4821 <summary>This counter displays the rate at which IL bytes are jitted per second. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4822 </member>
4823 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.IlBytesJittedsec.NextValue">
4824 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4825 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4826 </member>
4827 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.IlBytesJittedsec.NextValue(System.String)">
4828 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4829 <param name="instanceName">Name of the counter instance to query.</param>
4830 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4831 </member>
4832 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.NbofIlBytesJitted">
4833 <summary>This counter displays the total IL bytes jitted since the start of the application. This counter is exactly equivalent to the "Total # of IL Bytes Jitted" counter. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4834 </member>
4835 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.NbofIlBytesJitted.NextValue">
4836 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4837 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4838 </member>
4839 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.NbofIlBytesJitted.NextValue(System.String)">
4840 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4841 <param name="instanceName">Name of the counter instance to query.</param>
4842 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4843 </member>
4844 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.NbofMethodsJitted">
4845 <summary>This counter displays the total number of methods compiled Just-In-Time (JIT) by the CLR JIT compiler since the start of the application. This counter does not include the pre-jitted methods. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4846 </member>
4847 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.NbofMethodsJitted.NextValue">
4848 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4849 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4850 </member>
4851 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.NbofMethodsJitted.NextValue(System.String)">
4852 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4853 <param name="instanceName">Name of the counter instance to query.</param>
4854 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4855 </member>
4856 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.NotDisplayed">
4857 <summary>Not Displayed. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4858 </member>
4859 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.NotDisplayed.NextValue">
4860 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4861 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4862 </member>
4863 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.NotDisplayed.NextValue(System.String)">
4864 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4865 <param name="instanceName">Name of the counter instance to query.</param>
4866 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4867 </member>
4868 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.StandardJitFailures">
4869 <summary>This counter displays the peak number of methods the JIT compiler has failed to JIT since the start of the application. This failure can occur if the IL cannot be verified or if there was an internal error in the JIT compiler. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4870 </member>
4871 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.StandardJitFailures.NextValue">
4872 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4873 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4874 </member>
4875 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.StandardJitFailures.NextValue(System.String)">
4876 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4877 <param name="instanceName">Name of the counter instance to query.</param>
4878 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4879 </member>
4880 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.TimeinJit">
4881 <summary>This counter displays the percentage of elapsed time spent in JIT compilation since the last JIT compilation phase. This counter is updated at the end of every JIT compilation phase. A JIT compilation phase is the phase when a method and its dependencies are being compiled. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4882 </member>
4883 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.TimeinJit.NextValue">
4884 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4885 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4886 </member>
4887 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.TimeinJit.NextValue(System.String)">
4888 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4889 <param name="instanceName">Name of the counter instance to query.</param>
4890 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4891 </member>
4892 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.TotalNbofIlBytesJitted">
4893 <summary>This counter displays the total IL bytes jitted since the start of the application. This counter is exactly equivalent to the "# of IL Bytes Jitted" counter. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4894 </member>
4895 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.TotalNbofIlBytesJitted.NextValue">
4896 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4897 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4898 </member>
4899 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.TotalNbofIlBytesJitted.NextValue(System.String)">
4900 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4901 <param name="instanceName">Name of the counter instance to query.</param>
4902 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4903 </member>
4904 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading">
4905 <summary>Statistics for CLR Class Loader. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4906 </member>
4907 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.AssemblySearchLength">
4908 <summary>Reserved for future use. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4909 </member>
4910 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.AssemblySearchLength.NextValue">
4911 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4912 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4913 </member>
4914 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.AssemblySearchLength.NextValue(System.String)">
4915 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4916 <param name="instanceName">Name of the counter instance to query.</param>
4917 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4918 </member>
4919 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.BytesinLoaderHeap">
4920 <summary>This counter displays the current size (in bytes) of the memory committed by the class loader across all AppDomains. (Committed memory is the physical memory for which space has been reserved on the disk paging file.) This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4921 </member>
4922 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.BytesinLoaderHeap.NextValue">
4923 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4924 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4925 </member>
4926 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.BytesinLoaderHeap.NextValue(System.String)">
4927 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4928 <param name="instanceName">Name of the counter instance to query.</param>
4929 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4930 </member>
4931 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Currentappdomains">
4932 <summary>This counter displays the current number of AppDomains loaded in this application. AppDomains (application domains) provide a secure and versatile unit of processing that the CLR can use to provide isolation between applications running in the same process. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4933 </member>
4934 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Currentappdomains.NextValue">
4935 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4936 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4937 </member>
4938 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Currentappdomains.NextValue(System.String)">
4939 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4940 <param name="instanceName">Name of the counter instance to query.</param>
4941 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4942 </member>
4943 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.CurrentAssemblies">
4944 <summary>This counter displays the current number of Assemblies loaded across all AppDomains in this application. If the Assembly is loaded as domain-neutral from multiple AppDomains then this counter is incremented once only. Assemblies can be loaded as domain-neutral when their code can be shared by all AppDomains or they can be loaded as domain-specific when their code is private to the AppDomain. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4945 </member>
4946 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.CurrentAssemblies.NextValue">
4947 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4948 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4949 </member>
4950 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.CurrentAssemblies.NextValue(System.String)">
4951 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4952 <param name="instanceName">Name of the counter instance to query.</param>
4953 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4954 </member>
4955 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.CurrentClassesLoaded">
4956 <summary>This counter displays the current number of classes loaded in all Assemblies. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4957 </member>
4958 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.CurrentClassesLoaded.NextValue">
4959 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4960 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4961 </member>
4962 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.CurrentClassesLoaded.NextValue(System.String)">
4963 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4964 <param name="instanceName">Name of the counter instance to query.</param>
4965 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4966 </member>
4967 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Rateofappdomains">
4968 <summary>This counter displays the number of AppDomains loaded per second. AppDomains (application domains) provide a secure and versatile unit of processing that the CLR can use to provide isolation between applications running in the same process. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4969 </member>
4970 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Rateofappdomains.NextValue">
4971 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4972 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4973 </member>
4974 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Rateofappdomains.NextValue(System.String)">
4975 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4976 <param name="instanceName">Name of the counter instance to query.</param>
4977 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4978 </member>
4979 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Rateofappdomainsunloaded">
4980 <summary>This counter displays the number of AppDomains unloaded per second. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4981 </member>
4982 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Rateofappdomainsunloaded.NextValue">
4983 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4984 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4985 </member>
4986 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Rateofappdomainsunloaded.NextValue(System.String)">
4987 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4988 <param name="instanceName">Name of the counter instance to query.</param>
4989 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
4990 </member>
4991 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofAssemblies">
4992 <summary>This counter displays the number of Assemblies loaded across all AppDomains per second. If the Assembly is loaded as domain-neutral from multiple AppDomains then this counter is incremented once only. Assemblies can be loaded as domain-neutral when their code can be shared by all AppDomains or they can be loaded as domain-specific when their code is private to the AppDomain. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4993 </member>
4994 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofAssemblies.NextValue">
4995 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4996 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4997 </member>
4998 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofAssemblies.NextValue(System.String)">
4999 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5000 <param name="instanceName">Name of the counter instance to query.</param>
5001 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5002 </member>
5003 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofClassesLoaded">
5004 <summary>This counter displays the number of classes loaded per second in all Assemblies. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5005 </member>
5006 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofClassesLoaded.NextValue">
5007 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5008 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5009 </member>
5010 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofClassesLoaded.NextValue(System.String)">
5011 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5012 <param name="instanceName">Name of the counter instance to query.</param>
5013 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5014 </member>
5015 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofLoadFailures">
5016 <summary>This counter displays the number of classes that failed to load per second. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. These load failures could be due to many reasons like inadequate security or illegal format. Full details can be found in the profiling services help. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5017 </member>
5018 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofLoadFailures.NextValue">
5019 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5020 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5021 </member>
5022 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofLoadFailures.NextValue(System.String)">
5023 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5024 <param name="instanceName">Name of the counter instance to query.</param>
5025 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5026 </member>
5027 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TimeLoading">
5028 <summary>Reserved for future use. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5029 </member>
5030 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TimeLoading.NextValue">
5031 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5032 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5033 </member>
5034 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TimeLoading.NextValue(System.String)">
5035 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5036 <param name="instanceName">Name of the counter instance to query.</param>
5037 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5038 </member>
5039 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalAppdomains">
5040 <summary>This counter displays the peak number of AppDomains loaded since the start of this application. AppDomains (application domains) provide a secure and versatile unit of processing that the CLR can use to provide isolation between applications running in the same process. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5041 </member>
5042 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalAppdomains.NextValue">
5043 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5044 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5045 </member>
5046 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalAppdomains.NextValue(System.String)">
5047 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5048 <param name="instanceName">Name of the counter instance to query.</param>
5049 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5050 </member>
5051 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Totalappdomainsunloaded">
5052 <summary>This counter displays the total number of AppDomains unloaded since the start of the application. If an AppDomain is loaded and unloaded multiple times this counter would count each of those unloads as separate. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5053 </member>
5054 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Totalappdomainsunloaded.NextValue">
5055 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5056 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5057 </member>
5058 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Totalappdomainsunloaded.NextValue(System.String)">
5059 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5060 <param name="instanceName">Name of the counter instance to query.</param>
5061 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5062 </member>
5063 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalAssemblies">
5064 <summary>This counter displays the total number of Assemblies loaded since the start of this application. If the Assembly is loaded as domain-neutral from multiple AppDomains then this counter is incremented once only. Assemblies can be loaded as domain-neutral when their code can be shared by all AppDomains or they can be loaded as domain-specific when their code is private to the AppDomain. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5065 </member>
5066 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalAssemblies.NextValue">
5067 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5068 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5069 </member>
5070 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalAssemblies.NextValue(System.String)">
5071 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5072 <param name="instanceName">Name of the counter instance to query.</param>
5073 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5074 </member>
5075 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalClassesLoaded">
5076 <summary>This counter displays the cumulative number of classes loaded in all Assemblies since the start of this application. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5077 </member>
5078 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalClassesLoaded.NextValue">
5079 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5080 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5081 </member>
5082 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalClassesLoaded.NextValue(System.String)">
5083 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5084 <param name="instanceName">Name of the counter instance to query.</param>
5085 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5086 </member>
5087 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalNbofLoadFailures">
5088 <summary>This counter displays the peak number of classes that have failed to load since the start of the application. These load failures could be due to many reasons like inadequate security or illegal format. Full details can be found in the profiling services help. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5089 </member>
5090 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalNbofLoadFailures.NextValue">
5091 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5092 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5093 </member>
5094 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalNbofLoadFailures.NextValue(System.String)">
5095 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5096 <param name="instanceName">Name of the counter instance to query.</param>
5097 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5098 </member>
5099 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads">
5100 <summary>Stats for CLR Locks and Threads. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5101 </member>
5102 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.ContentionRatesec">
5103 <summary>Rate at which threads in the runtime attempt to acquire a managed lock unsuccessfully. Managed locks can be acquired in many ways; by the "lock" statement in C# or by calling System.Monitor.Enter or by using MethodImplOptions.Synchronized custom attribute. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5104 </member>
5105 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.ContentionRatesec.NextValue">
5106 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5107 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5108 </member>
5109 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.ContentionRatesec.NextValue(System.String)">
5110 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5111 <param name="instanceName">Name of the counter instance to query.</param>
5112 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5113 </member>
5114 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.CurrentQueueLength">
5115 <summary>This counter displays the total number of threads currently waiting to acquire some managed lock in the application. This counter is not an average over time; it displays the last observed value. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5116 </member>
5117 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.CurrentQueueLength.NextValue">
5118 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5119 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5120 </member>
5121 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.CurrentQueueLength.NextValue(System.String)">
5122 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5123 <param name="instanceName">Name of the counter instance to query.</param>
5124 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5125 </member>
5126 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.NbofcurrentlogicalThreads">
5127 <summary>This counter displays the number of current .NET thread objects in the application. A .NET thread object is created either by new System.Threading.Thread or when an unmanaged thread enters the managed environment. This counters maintains the count of both running and stopped threads. This counter is not an average over time; it just displays the last observed value. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5128 </member>
5129 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.NbofcurrentlogicalThreads.NextValue">
5130 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5131 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5132 </member>
5133 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.NbofcurrentlogicalThreads.NextValue(System.String)">
5134 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5135 <param name="instanceName">Name of the counter instance to query.</param>
5136 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5137 </member>
5138 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.NbofcurrentphysicalThreads">
5139 <summary>This counter displays the number of native OS threads created and owned by the CLR to act as underlying threads for .NET thread objects. This counters value does not include the threads used by the CLR in its internal operations; it is a subset of the threads in the OS process. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5140 </member>
5141 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.NbofcurrentphysicalThreads.NextValue">
5142 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5143 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5144 </member>
5145 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.NbofcurrentphysicalThreads.NextValue(System.String)">
5146 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5147 <param name="instanceName">Name of the counter instance to query.</param>
5148 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5149 </member>
5150 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.Nbofcurrentrecognizedthreads">
5151 <summary>This counter displays the number of threads that are currently recognized by the CLR; they have a corresponding .NET thread object associated with them. These threads are not created by the CLR; they are created outside the CLR but have since run inside the CLR at least once. Only unique threads are tracked; threads with same thread ID re-entering the CLR or recreated after thread exit are not counted twice. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5152 </member>
5153 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.Nbofcurrentrecognizedthreads.NextValue">
5154 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5155 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5156 </member>
5157 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.Nbofcurrentrecognizedthreads.NextValue(System.String)">
5158 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5159 <param name="instanceName">Name of the counter instance to query.</param>
5160 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5161 </member>
5162 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.Nboftotalrecognizedthreads">
5163 <summary>This counter displays the total number of threads that have been recognized by the CLR since the start of this application; these threads have a corresponding .NET thread object associated with them. These threads are not created by the CLR; they are created outside the CLR but have since run inside the CLR at least once. Only unique threads are tracked; threads with same thread ID re-entering the CLR or recreated after thread exit are not counted twice. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5164 </member>
5165 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.Nboftotalrecognizedthreads.NextValue">
5166 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5167 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5168 </member>
5169 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.Nboftotalrecognizedthreads.NextValue(System.String)">
5170 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5171 <param name="instanceName">Name of the counter instance to query.</param>
5172 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5173 </member>
5174 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.QueueLengthPeak">
5175 <summary>This counter displays the total number of threads that waited to acquire some managed lock since the start of the application. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5176 </member>
5177 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.QueueLengthPeak.NextValue">
5178 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5179 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5180 </member>
5181 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.QueueLengthPeak.NextValue(System.String)">
5182 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5183 <param name="instanceName">Name of the counter instance to query.</param>
5184 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5185 </member>
5186 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.QueueLengthsec">
5187 <summary>This counter displays the number of threads per second waiting to acquire some lock in the application. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5188 </member>
5189 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.QueueLengthsec.NextValue">
5190 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5191 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5192 </member>
5193 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.QueueLengthsec.NextValue(System.String)">
5194 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5195 <param name="instanceName">Name of the counter instance to query.</param>
5196 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5197 </member>
5198 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.rateofrecognizedthreadssec">
5199 <summary>This counter displays the number of threads per second that have been recognized by the CLR; these threads have a corresponding .NET thread object associated with them. These threads are not created by the CLR; they are created outside the CLR but have since run inside the CLR at least once. Only unique threads are tracked; threads with same thread ID re-entering the CLR or recreated after thread exit are not counted twice. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5200 </member>
5201 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.rateofrecognizedthreadssec.NextValue">
5202 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5203 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5204 </member>
5205 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.rateofrecognizedthreadssec.NextValue(System.String)">
5206 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5207 <param name="instanceName">Name of the counter instance to query.</param>
5208 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5209 </member>
5210 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.TotalNbofContentions">
5211 <summary>This counter displays the total number of times threads in the CLR have attempted to acquire a managed lock unsuccessfully. Managed locks can be acquired in many ways; by the "lock" statement in C# or by calling System.Monitor.Enter or by using MethodImplOptions.Synchronized custom attribute. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5212 </member>
5213 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.TotalNbofContentions.NextValue">
5214 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5215 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5216 </member>
5217 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.TotalNbofContentions.NextValue(System.String)">
5218 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5219 <param name="instanceName">Name of the counter instance to query.</param>
5220 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5221 </member>
5222 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory">
5223 <summary>Counters for CLR Garbage Collected heap. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5224 </member>
5225 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.AllocatedBytessec">
5226 <summary>This counter displays the rate of bytes per second allocated on the GC Heap. This counter is updated at the end of every GC; not at each allocation. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5227 </member>
5228 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.AllocatedBytessec.NextValue">
5229 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5230 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5231 </member>
5232 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.AllocatedBytessec.NextValue(System.String)">
5233 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5234 <param name="instanceName">Name of the counter instance to query.</param>
5235 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5236 </member>
5237 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.FinalizationSurvivors">
5238 <summary>This counter displays the number of garbage collected objects that survive a collection because they are waiting to be finalized. If these objects hold references to other objects then those objects also survive but are not counted by this counter; the "Promoted Finalization-Memory from Gen 0" and "Promoted Finalization-Memory from Gen 1" counters represent all the memory that survived due to finalization. This counter is not a cumulative counter; its updated at the end of every GC with count of the survivors during that particular GC only. This counter was designed to indicate the extra overhead that the application might incur because of finalization. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5239 </member>
5240 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.FinalizationSurvivors.NextValue">
5241 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5242 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5243 </member>
5244 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.FinalizationSurvivors.NextValue(System.String)">
5245 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5246 <param name="instanceName">Name of the counter instance to query.</param>
5247 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5248 </member>
5249 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen0heapsize">
5250 <summary>This counter displays the maximum bytes that can be allocated in generation 0 (Gen 0); its does not indicate the current number of bytes allocated in Gen 0. A Gen 0 GC is triggered when the allocations since the last GC exceed this size. The Gen 0 size is tuned by the Garbage Collector and can change during the execution of the application. At the end of a Gen 0 collection the size of the Gen 0 heap is infact 0 bytes; this counter displays the size (in bytes) of allocations that would trigger the next Gen 0 GC. This counter is updated at the end of a GC; its not updated on every allocation. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5251 </member>
5252 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen0heapsize.NextValue">
5253 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5254 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5255 </member>
5256 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen0heapsize.NextValue(System.String)">
5257 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5258 <param name="instanceName">Name of the counter instance to query.</param>
5259 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5260 </member>
5261 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen0PromotedBytesSec">
5262 <summary>This counter displays the bytes per second that are promoted from generation 0 (youngest) to generation 1; objects that are promoted just because they are waiting to be finalized are not included in this counter. Memory is promoted when it survives a garbage collection. This counter was designed as an indicator of relatively long-lived objects being created per sec. This counter displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5263 </member>
5264 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen0PromotedBytesSec.NextValue">
5265 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5266 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5267 </member>
5268 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen0PromotedBytesSec.NextValue(System.String)">
5269 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5270 <param name="instanceName">Name of the counter instance to query.</param>
5271 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5272 </member>
5273 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen1heapsize">
5274 <summary>This counter displays the current number of bytes in generation 1 (Gen 1); this counter does not display the maximum size of Gen 1. Objects are not directly allocated in this generation; they are promoted from previous Gen 0 GCs. This counter is updated at the end of a GC; its not updated on every allocation. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5275 </member>
5276 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen1heapsize.NextValue">
5277 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5278 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5279 </member>
5280 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen1heapsize.NextValue(System.String)">
5281 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5282 <param name="instanceName">Name of the counter instance to query.</param>
5283 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5284 </member>
5285 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen1PromotedBytesSec">
5286 <summary>This counter displays the bytes per second that are promoted from generation 1 to generation 2 (oldest); objects that are promoted just because they are waiting to be finalized are not included in this counter. Memory is promoted when it survives a garbage collection. Nothing is promoted from generation 2 since it is the oldest. This counter was designed as an indicator of very long-lived objects being created per sec. This counter displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5287 </member>
5288 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen1PromotedBytesSec.NextValue">
5289 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5290 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5291 </member>
5292 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen1PromotedBytesSec.NextValue(System.String)">
5293 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5294 <param name="instanceName">Name of the counter instance to query.</param>
5295 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5296 </member>
5297 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen2heapsize">
5298 <summary>This counter displays the current number of bytes in generation 2 (Gen 2). Objects are not directly allocated in this generation; they are promoted from Gen 1 during previous Gen 1 GCs. This counter is updated at the end of a GC; its not updated on every allocation. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5299 </member>
5300 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen2heapsize.NextValue">
5301 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5302 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5303 </member>
5304 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen2heapsize.NextValue(System.String)">
5305 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5306 <param name="instanceName">Name of the counter instance to query.</param>
5307 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5308 </member>
5309 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.LargeObjectHeapsize">
5310 <summary>This counter displays the current size of the Large Object Heap in bytes. Objects greater than 20 KBytes are treated as large objects by the Garbage Collector and are directly allocated in a special heap; they are not promoted through the generations. This counter is updated at the end of a GC; its not updated on every allocation. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5311 </member>
5312 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.LargeObjectHeapsize.NextValue">
5313 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5314 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5315 </member>
5316 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.LargeObjectHeapsize.NextValue(System.String)">
5317 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5318 <param name="instanceName">Name of the counter instance to query.</param>
5319 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5320 </member>
5321 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbBytesinallHeaps">
5322 <summary>This counter is the sum of four other counters; Gen 0 Heap Size; Gen 1 Heap Size; Gen 2 Heap Size and the Large Object Heap Size. This counter indicates the current memory allocated in bytes on the GC Heaps. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5323 </member>
5324 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbBytesinallHeaps.NextValue">
5325 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5326 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5327 </member>
5328 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbBytesinallHeaps.NextValue(System.String)">
5329 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5330 <param name="instanceName">Name of the counter instance to query.</param>
5331 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5332 </member>
5333 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGcHandles">
5334 <summary>This counter displays the current number of GC Handles in use. GCHandles are handles to resources external to the CLR and the managed environment. Handles occupy small amounts of memory in the GCHeap but potentially expensive unmanaged resources. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5335 </member>
5336 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGcHandles.NextValue">
5337 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5338 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5339 </member>
5340 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGcHandles.NextValue(System.String)">
5341 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5342 <param name="instanceName">Name of the counter instance to query.</param>
5343 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5344 </member>
5345 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen0Collections">
5346 <summary>This counter displays the number of times the generation 0 objects (youngest; most recently allocated) are garbage collected (Gen 0 GC) since the start of the application. Gen 0 GC occurs when the available memory in generation 0 is not sufficient to satisfy an allocation request. This counter is incremented at the end of a Gen 0 GC. Higher generation GCs include all lower generation GCs. This counter is explicitly incremented when a higher generation (Gen 1 or Gen 2) GC occurs. _Global_ counter value is not accurate and should be ignored. This counter displays the last observed value. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5347 </member>
5348 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen0Collections.NextValue">
5349 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5350 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5351 </member>
5352 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen0Collections.NextValue(System.String)">
5353 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5354 <param name="instanceName">Name of the counter instance to query.</param>
5355 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5356 </member>
5357 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen1Collections">
5358 <summary>This counter displays the number of times the generation 1 objects are garbage collected since the start of the application. The counter is incremented at the end of a Gen 1 GC. Higher generation GCs include all lower generation GCs. This counter is explicitly incremented when a higher generation (Gen 2) GC occurs. _Global_ counter value is not accurate and should be ignored. This counter displays the last observed value. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5359 </member>
5360 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen1Collections.NextValue">
5361 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5362 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5363 </member>
5364 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen1Collections.NextValue(System.String)">
5365 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5366 <param name="instanceName">Name of the counter instance to query.</param>
5367 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5368 </member>
5369 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen2Collections">
5370 <summary>This counter displays the number of times the generation 2 objects (older) are garbage collected since the start of the application. The counter is incremented at the end of a Gen 2 GC (also called full GC). _Global_ counter value is not accurate and should be ignored. This counter displays the last observed value. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5371 </member>
5372 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen2Collections.NextValue">
5373 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5374 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5375 </member>
5376 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen2Collections.NextValue(System.String)">
5377 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5378 <param name="instanceName">Name of the counter instance to query.</param>
5379 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5380 </member>
5381 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbInducedGc">
5382 <summary>This counter displays the peak number of times a garbage collection was performed because of an explicit call to GC.Collect. Its a good practice to let the GC tune the frequency of its collections. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5383 </member>
5384 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbInducedGc.NextValue">
5385 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5386 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5387 </member>
5388 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbInducedGc.NextValue(System.String)">
5389 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5390 <param name="instanceName">Name of the counter instance to query.</param>
5391 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5392 </member>
5393 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbofPinnedObjects">
5394 <summary>This counter displays the number of pinned objects encountered in the last GC. This counter tracks the pinned objects only in the heaps that were garbage collected e.g. a Gen 0 GC would cause enumeration of pinned objects in the generation 0 heap only. A pinned object is one that the Garbage Collector cannot move in memory. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5395 </member>
5396 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbofPinnedObjects.NextValue">
5397 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5398 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5399 </member>
5400 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbofPinnedObjects.NextValue(System.String)">
5401 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5402 <param name="instanceName">Name of the counter instance to query.</param>
5403 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5404 </member>
5405 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbofSinkBlocksinuse">
5406 <summary>This counter displays the current number of sync blocks in use. Sync blocks are per-object data structures allocated for storing synchronization information. Sync blocks hold weak references to managed objects and need to be scanned by the Garbage Collector. Sync blocks are not limited to storing synchronization information and can also store COM interop metadata. This counter was designed to indicate performance problems with heavy use of synchronization primitives. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5407 </member>
5408 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbofSinkBlocksinuse.NextValue">
5409 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5410 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5411 </member>
5412 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbofSinkBlocksinuse.NextValue(System.String)">
5413 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5414 <param name="instanceName">Name of the counter instance to query.</param>
5415 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5416 </member>
5417 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbTotalcommittedBytes">
5418 <summary>This counter displays the amount of virtual memory (in bytes) currently committed by the Garbage Collector. (Committed memory is the physical memory for which space has been reserved on the disk paging file). This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5419 </member>
5420 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbTotalcommittedBytes.NextValue">
5421 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5422 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5423 </member>
5424 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbTotalcommittedBytes.NextValue(System.String)">
5425 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5426 <param name="instanceName">Name of the counter instance to query.</param>
5427 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5428 </member>
5429 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbTotalreservedBytes">
5430 <summary>This counter displays the amount of virtual memory (in bytes) currently reserved by the Garbage Collector. (Reserved memory is the virtual memory space reserved for the application but no disk or main memory pages have been used.) This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5431 </member>
5432 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbTotalreservedBytes.NextValue">
5433 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5434 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5435 </member>
5436 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbTotalreservedBytes.NextValue(System.String)">
5437 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5438 <param name="instanceName">Name of the counter instance to query.</param>
5439 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5440 </member>
5441 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NotDisplayed">
5442 <summary>Not Displayed. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5443 </member>
5444 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NotDisplayed.NextValue">
5445 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5446 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5447 </member>
5448 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NotDisplayed.NextValue(System.String)">
5449 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5450 <param name="instanceName">Name of the counter instance to query.</param>
5451 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5452 </member>
5453 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedFinalizationMemoryfromGen0">
5454 <summary>This counter displays the bytes of memory that are promoted from generation 0 to generation 1 just because they are waiting to be finalized. This counter displays the value observed at the end of the last GC; its not a cumulative counter. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5455 </member>
5456 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedFinalizationMemoryfromGen0.NextValue">
5457 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5458 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5459 </member>
5460 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedFinalizationMemoryfromGen0.NextValue(System.String)">
5461 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5462 <param name="instanceName">Name of the counter instance to query.</param>
5463 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5464 </member>
5465 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedFinalizationMemoryfromGen1">
5466 <summary>This counter displays the bytes of memory that are promoted from generation 1 to generation 2 just because they are waiting to be finalized. This counter displays the value observed at the end of the last GC; its not a cumulative counter. This counter is reset to 0 if the last GC was a Gen 0 GC only. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5467 </member>
5468 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedFinalizationMemoryfromGen1.NextValue">
5469 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5470 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5471 </member>
5472 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedFinalizationMemoryfromGen1.NextValue(System.String)">
5473 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5474 <param name="instanceName">Name of the counter instance to query.</param>
5475 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5476 </member>
5477 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedMemoryfromGen0">
5478 <summary>This counter displays the bytes of memory that survive garbage collection (GC) and are promoted from generation 0 to generation 1; objects that are promoted just because they are waiting to be finalized are not included in this counter. This counter displays the value observed at the end of the last GC; its not a cumulative counter. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5479 </member>
5480 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedMemoryfromGen0.NextValue">
5481 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5482 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5483 </member>
5484 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedMemoryfromGen0.NextValue(System.String)">
5485 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5486 <param name="instanceName">Name of the counter instance to query.</param>
5487 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5488 </member>
5489 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedMemoryfromGen1">
5490 <summary>This counter displays the bytes of memory that survive garbage collection (GC) and are promoted from generation 1 to generation 2; objects that are promoted just because they are waiting to be finalized are not included in this counter. This counter displays the value observed at the end of the last GC; its not a cumulative counter. This counter is reset to 0 if the last GC was a Gen 0 GC only. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5491 </member>
5492 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedMemoryfromGen1.NextValue">
5493 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5494 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5495 </member>
5496 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedMemoryfromGen1.NextValue(System.String)">
5497 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5498 <param name="instanceName">Name of the counter instance to query.</param>
5499 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5500 </member>
5501 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.TimeinGc">
5502 <summary>% Time in GC is the percentage of elapsed time that was spent in performing a garbage collection (GC) since the last GC cycle. This counter is usually an indicator of the work done by the Garbage Collector on behalf of the application to collect and compact memory. This counter is updated only at the end of every GC and the counter value reflects the last observed value; its not an average. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5503 </member>
5504 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.TimeinGc.NextValue">
5505 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5506 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5507 </member>
5508 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.TimeinGc.NextValue(System.String)">
5509 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5510 <param name="instanceName">Name of the counter instance to query.</param>
5511 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5512 </member>
5513 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking">
5514 <summary>Help not available. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5515 </member>
5516 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.BytesReceived">
5517 <summary>The cumulative total number of bytes received over all open socket connections since the process was started. This number includes data and any protocol information that is not defined by the TCP/IP protocol. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5518 </member>
5519 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.BytesReceived.NextValue">
5520 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5521 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5522 </member>
5523 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.BytesReceived.NextValue(System.String)">
5524 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5525 <param name="instanceName">Name of the counter instance to query.</param>
5526 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5527 </member>
5528 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.BytesSent">
5529 <summary>The cumulative total number of bytes sent over all open socket connections since the process was started. This number includes data and any protocol information that is not defined by the TCP/IP protocol. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5530 </member>
5531 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.BytesSent.NextValue">
5532 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5533 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5534 </member>
5535 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.BytesSent.NextValue(System.String)">
5536 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5537 <param name="instanceName">Name of the counter instance to query.</param>
5538 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5539 </member>
5540 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.ConnectionsEstablished">
5541 <summary>The cumulative total number of socket connections established for this process since the process was started. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5542 </member>
5543 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.ConnectionsEstablished.NextValue">
5544 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5545 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5546 </member>
5547 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.ConnectionsEstablished.NextValue(System.String)">
5548 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5549 <param name="instanceName">Name of the counter instance to query.</param>
5550 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5551 </member>
5552 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.DatagramsReceived">
5553 <summary>The cumulative total number of datagram packets received since the process was started. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5554 </member>
5555 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.DatagramsReceived.NextValue">
5556 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5557 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5558 </member>
5559 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.DatagramsReceived.NextValue(System.String)">
5560 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5561 <param name="instanceName">Name of the counter instance to query.</param>
5562 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5563 </member>
5564 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.DatagramsSent">
5565 <summary>The cumulative total number of datagram packets sent since the process was started. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5566 </member>
5567 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.DatagramsSent.NextValue">
5568 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5569 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5570 </member>
5571 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.DatagramsSent.NextValue(System.String)">
5572 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5573 <param name="instanceName">Name of the counter instance to query.</param>
5574 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5575 </member>
5576 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting">
5577 <summary>Stats for CLR Remoting. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5578 </member>
5579 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.Channels">
5580 <summary>This counter displays the total number of remoting channels registered across all AppDomains since the start of the application. Channels are used to transport messages to and from remote objects. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5581 </member>
5582 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.Channels.NextValue">
5583 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5584 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5585 </member>
5586 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.Channels.NextValue(System.String)">
5587 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5588 <param name="instanceName">Name of the counter instance to query.</param>
5589 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5590 </member>
5591 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextBoundClassesLoaded">
5592 <summary>This counter displays the current number of context-bound classes loaded. Classes that can be bound to a context are called context-bound classes; context-bound classes are marked with Context Attributes which provide usage rules for synchronization; thread affinity; transactions etc. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5593 </member>
5594 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextBoundClassesLoaded.NextValue">
5595 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5596 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5597 </member>
5598 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextBoundClassesLoaded.NextValue(System.String)">
5599 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5600 <param name="instanceName">Name of the counter instance to query.</param>
5601 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5602 </member>
5603 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextBoundObjectsAllocsec">
5604 <summary>This counter displays the number of context-bound objects allocated per second. Instances of classes that can be bound to a context are called context-bound objects; context-bound classes are marked with Context Attributes which provide usage rules for synchronization; thread affinity; transactions etc. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5605 </member>
5606 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextBoundObjectsAllocsec.NextValue">
5607 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5608 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5609 </member>
5610 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextBoundObjectsAllocsec.NextValue(System.String)">
5611 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5612 <param name="instanceName">Name of the counter instance to query.</param>
5613 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5614 </member>
5615 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextProxies">
5616 <summary>This counter displays the total number of remoting proxy objects created in this process since the start of the process. Proxy object acts as a representative of the remote objects and ensures that all calls made on the proxy are forwarded to the correct remote object instance. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5617 </member>
5618 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextProxies.NextValue">
5619 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5620 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5621 </member>
5622 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextProxies.NextValue(System.String)">
5623 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5624 <param name="instanceName">Name of the counter instance to query.</param>
5625 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5626 </member>
5627 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.Contexts">
5628 <summary>This counter displays the current number of remoting contexts in the application. A context is a boundary containing a collection of objects with the same usage rules like synchronization; thread affinity; transactions etc. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5629 </member>
5630 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.Contexts.NextValue">
5631 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5632 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5633 </member>
5634 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.Contexts.NextValue(System.String)">
5635 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5636 <param name="instanceName">Name of the counter instance to query.</param>
5637 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5638 </member>
5639 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.RemoteCallssec">
5640 <summary>This counter displays the number of remote procedure calls invoked per second. A remote procedure call is a call on any object outside the caller;s AppDomain. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5641 </member>
5642 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.RemoteCallssec.NextValue">
5643 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5644 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5645 </member>
5646 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.RemoteCallssec.NextValue(System.String)">
5647 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5648 <param name="instanceName">Name of the counter instance to query.</param>
5649 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5650 </member>
5651 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.TotalRemoteCalls">
5652 <summary>This counter displays the total number of remote procedure calls invoked since the start of this application. A remote procedure call is a call on any object outside the caller;s AppDomain. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5653 </member>
5654 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.TotalRemoteCalls.NextValue">
5655 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5656 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5657 </member>
5658 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.TotalRemoteCalls.NextValue(System.String)">
5659 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5660 <param name="instanceName">Name of the counter instance to query.</param>
5661 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5662 </member>
5663 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity">
5664 <summary>Stats for CLR Security. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5665 </member>
5666 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.NbLinkTimeChecks">
5667 <summary>This counter displays the total number of linktime Code Access Security (CAS) checks since the start of the application. Linktime CAS checks are performed when a caller makes a call to a callee demanding a particular permission at JIT compile time; linktime check is performed once per caller. This count is not indicative of serious performance issues; its indicative of the security system activity. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5668 </member>
5669 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.NbLinkTimeChecks.NextValue">
5670 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5671 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5672 </member>
5673 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.NbLinkTimeChecks.NextValue(System.String)">
5674 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5675 <param name="instanceName">Name of the counter instance to query.</param>
5676 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5677 </member>
5678 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.NotDisplayed">
5679 <summary>Not Displayed. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5680 </member>
5681 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.NotDisplayed.NextValue">
5682 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5683 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5684 </member>
5685 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.NotDisplayed.NextValue(System.String)">
5686 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5687 <param name="instanceName">Name of the counter instance to query.</param>
5688 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5689 </member>
5690 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.StackWalkDepth">
5691 <summary>This counter displays the depth of the stack during that last runtime Code Access Security check. Runtime Code Access Security check is performed by crawling the stack. This counter is not an average; it just displays the last observed value. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5692 </member>
5693 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.StackWalkDepth.NextValue">
5694 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5695 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5696 </member>
5697 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.StackWalkDepth.NextValue(System.String)">
5698 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5699 <param name="instanceName">Name of the counter instance to query.</param>
5700 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5701 </member>
5702 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TimeinRtchecks">
5703 <summary>This counter displays the percentage of elapsed time spent in performing runtime Code Access Security (CAS) checks since the last such check. CAS allows code to be trusted to varying degrees and enforces these varying levels of trust depending on code identity. This counter is updated at the end of a runtime security check; it represents the last observed value; its not an average. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5704 </member>
5705 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TimeinRtchecks.NextValue">
5706 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5707 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5708 </member>
5709 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TimeinRtchecks.NextValue(System.String)">
5710 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5711 <param name="instanceName">Name of the counter instance to query.</param>
5712 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5713 </member>
5714 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TimeSigAuthenticating">
5715 <summary>Reserved for future use. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5716 </member>
5717 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TimeSigAuthenticating.NextValue">
5718 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5719 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5720 </member>
5721 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TimeSigAuthenticating.NextValue(System.String)">
5722 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5723 <param name="instanceName">Name of the counter instance to query.</param>
5724 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5725 </member>
5726 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TotalRuntimeChecks">
5727 <summary>This counter displays the total number of runtime Code Access Security (CAS) checks performed since the start of the application. Runtime CAS checks are performed when a caller makes a call to a callee demanding a particular permission; the runtime check is made on every call by the caller; the check is done by examining the current thread stack of the caller. This counter used together with "Stack Walk Depth" is indicative of performance penalty for security checks. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5728 </member>
5729 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TotalRuntimeChecks.NextValue">
5730 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5731 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
5732 </member>
5733 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TotalRuntimeChecks.NextValue(System.String)">
5734 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5735 <param name="instanceName">Name of the counter instance to query.</param>
5736 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the named instance.</returns>
5737 </member>
5738 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle">
5739 <summary>Counters for System.Data.OracleClient This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5740 </member>
5741 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.HardConnectsPerSecond">
5742 <summary>The number of actual connections per second that are being made to servers This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5743 </member>
5744 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.HardConnectsPerSecond.NextValue">
5745 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5746 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5747 </member>
5748 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.HardDisconnectsPerSecond">
5749 <summary>The number of actual disconnects per second that are being made to servers This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5750 </member>
5751 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.HardDisconnectsPerSecond.NextValue">
5752 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5753 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5754 </member>
5755 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnectionPoolGroups">
5756 <summary>The number of unique connection strings This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5757 </member>
5758 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnectionPoolGroups.NextValue">
5759 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5760 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5761 </member>
5762 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnectionPools">
5763 <summary>The number of connection pools This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5764 </member>
5765 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnectionPools.NextValue">
5766 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5767 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5768 </member>
5769 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnections">
5770 <summary>The number of connections currently in-use This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5771 </member>
5772 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnections.NextValue">
5773 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5774 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5775 </member>
5776 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfFreeConnections">
5777 <summary>The number of connections currently available for use This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5778 </member>
5779 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfFreeConnections.NextValue">
5780 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5781 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5782 </member>
5783 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfInactiveConnectionPoolGroups">
5784 <summary>The number of unique connection strings waiting for pruning This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5785 </member>
5786 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfInactiveConnectionPoolGroups.NextValue">
5787 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5788 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5789 </member>
5790 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfInactiveConnectionPools">
5791 <summary>The number of connection pools This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5792 </member>
5793 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfInactiveConnectionPools.NextValue">
5794 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5795 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5796 </member>
5797 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfNonPooledConnections">
5798 <summary>The number of connections that are not using connection pooling This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5799 </member>
5800 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfNonPooledConnections.NextValue">
5801 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5802 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5803 </member>
5804 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfPooledConnections">
5805 <summary>The number of connections that are managed by the connection pooler This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5806 </member>
5807 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfPooledConnections.NextValue">
5808 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5809 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5810 </member>
5811 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfReclaimedConnections">
5812 <summary>The number of connections we reclaim from GCed from external connections This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5813 </member>
5814 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfReclaimedConnections.NextValue">
5815 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5816 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5817 </member>
5818 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfStasisConnections">
5819 <summary>The number of connections currently waiting to be made ready for use This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5820 </member>
5821 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfStasisConnections.NextValue">
5822 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5823 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5824 </member>
5825 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.SoftConnectsPerSecond">
5826 <summary>The number of connections we get from the pool per second This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5827 </member>
5828 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.SoftConnectsPerSecond.NextValue">
5829 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5830 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5831 </member>
5832 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.SoftDisconnectsPerSecond">
5833 <summary>The number of connections we return to the pool per second This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5834 </member>
5835 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.SoftDisconnectsPerSecond.NextValue">
5836 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5837 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5838 </member>
5839 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer">
5840 <summary>Counters for System.Data.SqlClient This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5841 </member>
5842 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.HardConnectsPerSecond">
5843 <summary>The number of actual connections per second that are being made to servers This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5844 </member>
5845 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.HardConnectsPerSecond.NextValue">
5846 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5847 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5848 </member>
5849 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.HardDisconnectsPerSecond">
5850 <summary>The number of actual disconnects per second that are being made to servers This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5851 </member>
5852 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.HardDisconnectsPerSecond.NextValue">
5853 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5854 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5855 </member>
5856 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnectionPoolGroups">
5857 <summary>The number of unique connection strings This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5858 </member>
5859 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnectionPoolGroups.NextValue">
5860 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5861 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5862 </member>
5863 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnectionPools">
5864 <summary>The number of connection pools This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5865 </member>
5866 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnectionPools.NextValue">
5867 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5868 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5869 </member>
5870 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnections">
5871 <summary>The number of connections currently in-use This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5872 </member>
5873 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnections.NextValue">
5874 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5875 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5876 </member>
5877 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfFreeConnections">
5878 <summary>The number of connections currently available for use This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5879 </member>
5880 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfFreeConnections.NextValue">
5881 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5882 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5883 </member>
5884 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfInactiveConnectionPoolGroups">
5885 <summary>The number of unique connection strings waiting for pruning This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5886 </member>
5887 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfInactiveConnectionPoolGroups.NextValue">
5888 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5889 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5890 </member>
5891 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfInactiveConnectionPools">
5892 <summary>The number of connection pools This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5893 </member>
5894 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfInactiveConnectionPools.NextValue">
5895 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5896 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5897 </member>
5898 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfNonPooledConnections">
5899 <summary>The number of connections that are not using connection pooling This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5900 </member>
5901 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfNonPooledConnections.NextValue">
5902 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5903 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5904 </member>
5905 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfPooledConnections">
5906 <summary>The number of connections that are managed by the connection pooler This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5907 </member>
5908 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfPooledConnections.NextValue">
5909 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5910 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5911 </member>
5912 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfReclaimedConnections">
5913 <summary>The number of connections we reclaim from GCed from external connections This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5914 </member>
5915 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfReclaimedConnections.NextValue">
5916 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5917 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5918 </member>
5919 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfStasisConnections">
5920 <summary>The number of connections currently waiting to be made ready for use This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5921 </member>
5922 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfStasisConnections.NextValue">
5923 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5924 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5925 </member>
5926 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.SoftConnectsPerSecond">
5927 <summary>The number of connections we get from the pool per second This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5928 </member>
5929 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.SoftConnectsPerSecond.NextValue">
5930 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5931 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5932 </member>
5933 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.SoftDisconnectsPerSecond">
5934 <summary>The number of connections we return to the pool per second This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5935 </member>
5936 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.SoftDisconnectsPerSecond.NextValue">
5937 <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
5938 <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
5939 </member>
5940 <member name="T:MbUnit.Framework.PostItAttribute">
5941 <summary>Tags fixture class, test method or method property with a 'postit' from an author regarding that class, method or property.</summary>
5942 </member>
5943 <member name="P:MbUnit.Framework.PostItAttribute.Author">
5944 <summary>Gets the author of the message as an <see cref="T:MbUnit.Framework.AuthorAttribute" />.</summary>
5945 <value>The author of the message.</value>
5946 </member>
5947 <member name="P:MbUnit.Framework.PostItAttribute.AuthorType">
5948 <summary>Gets the type of the class representing the author.</summary>
5949 <value>The class representing the author.</value>
5950 </member>
5951 <member name="P:MbUnit.Framework.PostItAttribute.Message">
5952 <summary>Gets the message to be attached.</summary>
5953 <value>The message.</value>
5954 </member>
5955 <member name="M:MbUnit.Framework.ProcessTestFixtureAttribute.GetRun">
5956 <summary>Gets the test runner class defining all the tests to be run and the test logic to be used within the tagged fixture class.</summary>
5957 <returns>A <see cref="T:MbUnit.Core.Runs.SequenceRun" /> object</returns>
5958 </member>
5959 <member name="T:MbUnit.Framework.ProviderAttribute">
5960 <summary>Tags method that provide new objects to be used by tests within a <see cref="T:MbUnit.Framework.TypeFixtureAttribute" /> tagged fixture class. The type-specific fixture assumes that all tests contained in the fixture that have an argument of the same type specified in the <see cref="T:MbUnit.Framework.TypeFixtureAttribute" nolink="true" /> will be provided by the methods tagged by <see cref="T:MbUnit.Framework.ProviderAttribute" /> or by a class specified by the <see cref="T:MbUnit.Framework.ProviderFactoryAttribute" /> tagging the same fixture class as the <see cref="T:MbUnit.Framework.TypeFixtureAttribute" nolink="true" />.</summary>
5961 </member>
5962 <member name="P:MbUnit.Framework.ProviderAttribute.ProviderType">
5963 <summary>Gets or sets the type returned by the provider.</summary>
5964 <value>The type returned by the provider.</value>
5965 <exception cref="T:System.ArgumentNullException">Thrown if value is null</exception>
5966 </member>
5967 <member name="T:MbUnit.Framework.ProviderFactoryAttribute">
5968 <summary>Tags a class also tagged by a <see cref="T:MbUnit.Framework.TypeFixtureAttribute" /> to indicate a class that contains properties returning objects of the type required by the <see cref="T:MbUnit.Framework.TypeFixtureAttribute" nolink="true" />.</summary>
5969 </member>
5970 <member name="P:MbUnit.Framework.ProviderFactoryAttribute.FactoredType">
5971 <summary>Gets or sets the <see cref="T:System.Type" /> of objects generated by the provider factory</summary>
5972 <value>The <see cref="T:System.Type" /> of objects generated by the provider factory.</value>
5973 <exception cref="T:System.ArgumentNullException">Thrown if set to null</exception>
5974 </member>
5975 <member name="P:MbUnit.Framework.ProviderFactoryAttribute.FactoryType">
5976 <summary>Gets or sets the provider factory <see cref="T:System.Type" />.</summary>
5977 <value>The <see cref="T:System.Type" /> of the provider factory.</value>
5978 <exception cref="T:System.ArgumentNullException">Thrown if set to null</exception>
5979 </member>
5980 <member name="M:MbUnit.Framework.ProviderFactoryAttribute.GetRun(System.Type)">
5981 <summary>Gets the execution logic for the provider factory.</summary>
5982 <param name="decoratedType">The <see cref="T:System.Type" /> of the class tagged with the attribute.</param>
5983 <returns>A <see cref="T:MbUnit.Core.Runs.ProviderFactoryRun" /> object</returns>
5984 </member>
5985 <member name="T:MbUnit.Framework.ProviderFixtureDecoratorPatternAttribute">
5986 <summary>This is the base class for attributes that can decorate fixtures identifying them as using provider classes. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
5987 </member>
5988 <member name="T:MbUnit.Framework.ReadAttribute">
5989 <summary>Tag use to mark a method that reads data from a device.</summary>
5990 </member>
5991 <member name="T:MbUnit.Framework.ReflectionAssert">
5992 <summary>Class containing generic assert methods for the verification of <see cref="T:System.Type" /> information by reflection. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5993 </member>
5994 <member name="M:MbUnit.Framework.ReflectionAssert.HasConstructor(System.Type,System.Type[])">
5995 <summary>Asserts that <paramref name="type" /> has a public instance constructor with a signature defined by <paramref name="parameters" />.</summary>
5996 <param name="type">The type to test</param>
5997 <param name="parameters">The list of parameters for the constructor</param>
5998 </member>
5999 <member name="M:MbUnit.Framework.ReflectionAssert.HasConstructor(System.Type,System.Reflection.BindingFlags,System.Type[])">
6000 <summary>Asserts that the <paramref name="type" /> has a constructor, with the specified binding <paramref name="flags" />, with a signature defined by <paramref name="parameters" />.</summary>
6001 <param name="type">The type to test.</param>
6002 <param name="flags">The <see cref="T:System.Reflection.BindingFlags" /> the type should have.</param>
6003 <param name="parameters">The list of parameters for the constructor.</param>
6004 </member>
6005 <member name="M:MbUnit.Framework.ReflectionAssert.HasDefaultConstructor(System.Type)">
6006 <summary>Asserts that <paramref name="type" /> has a default public constructor</summary>
6007 <param name="type">The <see cref="T:System.Type" /> to test.</param>
6008 </member>
6009 <member name="M:MbUnit.Framework.ReflectionAssert.HasField(System.Type,System.String)">
6010 <summary>Asserts that the <paramref name="type" /> has a public field with the given <paramref name="name" />.</summary>
6011 <param name="type">The type to test.</param>
6012 <param name="name">The name of the field to find.</param>
6013 </member>
6014 <member name="M:MbUnit.Framework.ReflectionAssert.HasField(System.Type,System.Reflection.BindingFlags,System.String)">
6015 <summary>Asserts that the <paramref name="type" /> has a field with the given <paramref name="flags" /> and <paramref name="name" />.</summary>
6016 <param name="type">The type to test.</param>
6017 <param name="name">The name of the field to find.</param>
6018 <param name="flags">The <see cref="T:System.Reflection.BindingFlags" /> for the field.</param>
6019 </member>
6020 <member name="M:MbUnit.Framework.ReflectionAssert.HasMethod(System.Type,System.String,System.Type[])">
6021 <summary>Asserts that the <paramref name="type" /> has a public instance method with the given <paramref name="name" /> and signature defined by <paramref name="parameters" />.</summary>
6022 <param name="type">The type to test.</param>
6023 <param name="name">The name of the method to look for.</param>
6024 <param name="parameters">The parameters for the method.</param>
6025 </member>
6026 <member name="M:MbUnit.Framework.ReflectionAssert.HasMethod(System.Type,System.Reflection.BindingFlags,System.String,System.Type[])">
6027 <summary>Asserts that the <paramref name="type" /> has a method with the given <paramref name="name" />, <paramref name="flags" /> and signature defined by <paramref name="parameters" />.</summary>
6028 <param name="type">The type to test.</param>
6029 <param name="flags">The <see cref="T:System.Reflection.BindingFlags" /> the method should have.</param>
6030 <param name="name">The name of the method.</param>
6031 <param name="parameters">The parameters for the method.</param>
6032 </member>
6033 <member name="M:MbUnit.Framework.ReflectionAssert.IsAssignableFrom(System.Type,System.Type)">
6034 <summary>Asserts whether an instance of the <paramref name="parent" /> can be assigned from an instance of <paramref name="child" />.</summary>
6035 <param name="parent">Parent <see cref="T:System.Type" /> instance.</param>
6036 <param name="child">Child <see cref="T:System.Type" /> instance.</param>
6037 </member>
6038 <member name="M:MbUnit.Framework.ReflectionAssert.IsInstanceOf(System.Type,System.Object)">
6039 <summary>Asserts whether <paramref name="child" /> is an instance of the <paramref name="type" />.</summary>
6040 <param name="type">The <see cref="T:System.Type" /> that <paramref name="child" /> should be an instance of.</param>
6041 <param name="child">The <see cref="T:System.Object" /> to test</param>
6042 </member>
6043 <member name="M:MbUnit.Framework.ReflectionAssert.IsSealed(System.Type)">
6044 <summary>Verifies whether the specified <see cref="T:System.Type" /><paramref name="t" /> is sealed.</summary>
6045 <param name="t">The type to test</param>
6046 </member>
6047 <member name="M:MbUnit.Framework.ReflectionAssert.NotCreatable(System.Type)">
6048 <summary>Verifies whether the specified <see cref="T:System.Type" /><paramref name="t" /> has only private constructors and is thus not creatable</summary>
6049 <param name="t">The type to test</param>
6050 </member>
6051 <member name="M:MbUnit.Framework.ReflectionAssert.ReadOnlyProperty(System.Type,System.String)">
6052 <summary>Verifies that <see cref="T:System.Type" /><paramref name="t" /> has a read-only property called <paramref name="propertyName" /></summary>
6053 <param name="t">The type to test.</param>
6054 <param name="propertyName">Name of the read-only property to find</param>
6055 </member>
6056 <member name="M:MbUnit.Framework.ReflectionAssert.ReadOnlyProperty(System.Reflection.PropertyInfo)">
6057 <summary>Verifies the property described by <paramref name="pi" /> is read-only</summary>
6058 <param name="pi">A <see cref="T:System.Reflection.PropertyInfo" /> object describing a property</param>
6059 </member>
6060 <member name="M:MbUnit.Framework.ReflectionAssert.WriteOnlyProperty(System.Type,System.String)">
6061 <summary>Verifies that <see cref="T:System.Type" /><paramref name="t" /> has a write-only property called <paramref name="propertyName" /></summary>
6062 <param name="t">The type to test.</param>
6063 <param name="propertyName">Name of the write-only property to find</param>
6064 </member>
6065 <member name="M:MbUnit.Framework.ReflectionAssert.WriteOnlyProperty(System.Reflection.PropertyInfo)">
6066 <summary>Verifies the property described by <paramref name="pi" /> is write-only</summary>
6067 <param name="pi">A <see cref="T:System.Reflection.PropertyInfo" /> object describing a property</param>
6068 </member>
6069 <member name="T:MbUnit.Framework.RepeatAttribute">
6070 <summary>This attribute decorates a test method or fixture and causes it to be invoked repeatedly within the same thread. This class cannot be inherited.</summary>
6071 </member>
6072 <member name="M:MbUnit.Framework.RepeatAttribute.GetInvoker(MbUnit.Core.Invokers.IRunInvoker)">
6073 <summary>Returns the invoker class to run the test the given number of times.</summary>
6074 <param name="wrapper">The invoker currently set to run the test.</param>
6075 <returns>A new <see cref="T:MbUnit.Core.Invokers.RepeatRunInvoker" /> object wrapping <paramref name="wrapper" /></returns>
6076 </member>
6077 <member name="T:MbUnit.Framework.RepeatTestAttribute">
6078 <summary>This attribute decorates a test method and causes it to be invoked repeatedly within the same thread. This class cannot be inherited.</summary>
6079 </member>
6080 <member name="P:MbUnit.Framework.RepeatTestAttribute.Count">
6081 <summary>Gets the number of times the test will be repeated.</summary>
6082 <value>The the number of times the test will be repeated.</value>
6083 </member>
6084 <member name="M:MbUnit.Framework.ResourceXmlDataProviderAttribute.LoadResource">
6085 <summary>Loads the resource.</summary>
6086 <returns>A <see cref="T:System.IO.StreamReader" /> for the XML file</returns>
6087 </member>
6088 <member name="T:MbUnit.Framework.RestoreDatabaseAttribute">
6089 <summary>Tags a method to indicate that a database must be restored according to a schedule around the execution of the test This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
6090 </member>
6091 <member name="P:MbUnit.Framework.RestoreDatabaseAttribute.Schedule">
6092 <summary>Gets the <see cref="T:MbUnit.Framework.TestSchedule" /> value defining when the restore occurs with respect to the test execution</summary>
6093 <value>The <see cref="T:MbUnit.Framework.TestSchedule" /> value defining when the restore occurs with respect to the test execution</value>
6094 </member>
6095 <member name="M:MbUnit.Framework.RestoreDatabaseAttribute.GetInvoker(MbUnit.Core.Invokers.IRunInvoker)">
6096 <summary>Returns the invoker class to run the test with the scheduled database restore.</summary>
6097 <param name="invoker">The invoker currently set to run the test.</param>
6098 <returns>A new <see cref="T:MbUnit.Framework.RestoreDatabaseAttribute.RollBackRunInvoker" /> object wrapping <paramref name="invoker" /></returns>
6099 </member>
6100 <member name="T:MbUnit.Framework.RestoreDatabaseFirstAttribute">
6101 <summary>Tags a test method to indicate that a database must be restored before the execution of the test</summary>
6102 </member>
6103 <member name="T:MbUnit.Framework.RollBackAttribute">
6104 <summary>Tags a test method whose database operation must be executed within a transaction and rolled back when it has finished executing This class cannot be inherited.</summary>
6105 </member>
6106 <member name="M:MbUnit.Framework.RollBackAttribute.GetInvoker(MbUnit.Core.Invokers.IRunInvoker)">
6107 <summary>Returns the invoker class to run the test within a transaction and roll it back once complete.</summary>
6108 <param name="invoker">The invoker currently set to run the test.</param>
6109 <returns>A new <see cref="T:MbUnit.Framework.RollBackAttribute.RollBackRunInvoker" /> object wrapping <paramref name="invoker" /></returns>
6110 </member>
6111 <member name="T:MbUnit.Framework.RowAttribute">
6112 <summary>Provides a row of values using in conjunction with <see cref="T:MbUnit.Framework.RowTestAttribute" /> to bind values to the parameters of a row test method. This class cannot be inherited.</summary>
6113 </member>
6114 <member name="P:MbUnit.Framework.RowAttribute.ExpectedException">
6115 <summary>Gets or sets the type of exception that is expected to be thrown when this row is tested, or null if none.</summary>
6116 </member>
6117 <member name="M:MbUnit.Framework.RowAttribute.GetRow">
6118 <summary>Gets the row of values.</summary>
6119 <returns>The row of values</returns>
6120 </member>
6121 <member name="M:MbUnit.Framework.RowAttribute.GetRow(System.Reflection.ParameterInfo[])">
6122 <summary>Gets the row of values. Each one will be converted (if posible) to the type of the corresponding argument in the test method.</summary>
6123 <param name="parameters">List of parameters.</param>
6124 <returns>The row of values.</returns>
6125 </member>
6126 <member name="T:MbUnit.Framework.RowTestAttribute">
6127 <summary>Declares a row test when applied to a test method along with one or more <see cref="T:MbUnit.Framework.RowAttribute" /> attributes. This class cannot be inherited.</summary>
6128 </member>
6129 <member name="T:MbUnit.Framework.SecurityAssert">
6130 <summary>Class containing generic assert methods for the verification of Roles and Identity information. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
6131 </member>
6132 <member name="M:MbUnit.Framework.SecurityAssert.IsAuthenticated(System.Security.Principal.IIdentity)">
6133 <summary>Asserts that <paramref name="identity" /> is authenticated.</summary>
6134 <param name="identity">The <see cref="T:System.Security.Principal.IIdentity" /> being tested.</param>
6135 </member>
6136 <member name="M:MbUnit.Framework.SecurityAssert.IsNotAuthenticated(System.Security.Principal.IIdentity)">
6137 <summary>Asserts that <paramref name="identity" /> is not authenticated.</summary>
6138 <param name="identity">The <see cref="T:System.Security.Principal.IIdentity" /> being tested.</param>
6139 </member>
6140 <member name="M:MbUnit.Framework.SecurityAssert.WindowIsAuthenticated">
6141 <summary>Asserts that the current windows identity is authenticated.</summary>
6142 </member>
6143 <member name="M:MbUnit.Framework.SecurityAssert.WindowIsNotAuthenticated">
6144 <summary>Asserts that the current windows identity is not authenticated.</summary>
6145 </member>
6146 <member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInAdministrator">
6147 <summary>Asserts that the current windows identity is in the <see cref="F:System.Security.Principal.WindowsBuiltInRole.Administrator" /> role.</summary>
6148 </member>
6149 <member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInGuest">
6150 <summary>Asserts that the current windows identity is in the <see cref="F:System.Security.Principal.WindowsBuiltInRole.Guest" /> role.</summary>
6151 </member>
6152 <member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInPowerUser">
6153 <summary>Asserts that the current windows identity is in the <see cref="F:System.Security.Principal.WindowsBuiltInRole.PowerUser" /> role.</summary>
6154 </member>
6155 <member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInRole(System.Security.Principal.WindowsBuiltInRole)">
6156 <summary>Asserts that the current windows identity is in <param name="role" />.</summary>
6157 <param name="role">The <see cref="T:System.Security.Principal.WindowsBuiltInRole">role</see> to which the current windows identity should belong.</param>
6158 </member>
6159 <member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInUser">
6160 <summary>Asserts that the current windows identity is in the <see cref="F:System.Security.Principal.WindowsBuiltInRole.User" /> role.</summary>
6161 </member>
6162 <member name="T:MbUnit.Framework.SeedAttribute">
6163 <summary>Tags a method as producing a seed value for a production grammar test fixture This class cannot be inherited.</summary>
6164 </member>
6165 <member name="T:MbUnit.Framework.SerialAssert">
6166 <summary>Class containing generic assert methods on the serialization capability of a type or object This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
6167 </member>
6168 <member name="M:MbUnit.Framework.SerialAssert.IsXmlSerializable(System.Type)">
6169 <summary>Verifies that the type <paramref name="t" /> is serializable with the XmlSerializer object.</summary>
6170 <param name="t">The type to test.</param>
6171 </member>
6172 <member name="M:MbUnit.Framework.SerialAssert.OneWaySerialization(System.Object)">
6173 <summary>Verifies that an <see cref="T:System.Object" /><paramref name="o" /> is not null and then serialized into a valid XML document</summary>
6174 <param name="o">The <see cref="T:System.Object" /> to serialize</param>
6175 <returns>The serialized object as a XML string</returns>
6176 </member>
6177 <member name="M:MbUnit.Framework.SerialAssert.TwoWaySerialization(System.Object)">
6178 <summary>Verifies that an <see cref="T:System.Object" /><paramref name="o" /> can be serialized and deserialized to/from XML and that the results are the same once both are done.</summary>
6179 <param name="o">The <see cref="T:System.Object" /> to test</param>
6180 </member>
6181 <member name="T:MbUnit.Framework.SetUpAttribute">
6182 <summary>The setup attribute is applied to a method that is to be invoked before each test in a fixture executes. The method will run once for each test.</summary>
6183 </member>
6184 <member name="T:MbUnit.Framework.SqlRestoreInfoAttribute">
6185 <summary>Tags a class with the information needed to restore a SQL Server database from a backup. Test method within the tagged class must themselves be tagged with an attribute derived from <see cref="T:MbUnit.Framework.RestoreDatabaseAttribute" /> to make use of this information. This class cannot be inherited.</summary>
6186 </member>
6187 <member name="T:MbUnit.Framework.StringAssert">
6188 <summary>Class containing generic assert methods for <see cref="T:System.String" />s This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
6189 </member>
6190 <member name="M:MbUnit.Framework.StringAssert.AreEqualIgnoreCase(System.String,System.String)">
6191 <summary>Asserts that two strings <paramref name="s1" /> and <paramref name="s2" /> are equal, ignoring the case</summary>
6192 <param name="s1">Expected string</param>
6193 <param name="s2">Actual string</param>
6194 </member>
6195 <member name="M:MbUnit.Framework.StringAssert.Contains(System.String,System.String)">
6196 <summary>Asserts the string <paramref name="s" /> contains the string <paramref name="contain" /></summary>
6197 <param name="s">The string to check</param>
6198 <param name="contain">The string that might be found within <paramref name="s" /></param>
6199 </member>
6200 <member name="M:MbUnit.Framework.StringAssert.DoesNotContain(System.String,System.Char[])">
6201 <summary>Asserts the string <paramref name="s" /> contains none of the <see cref="T:System.Char" />s in <paramref name="anyOf" /></summary>
6202 <param name="s">String to test.</param>
6203 <param name="anyOf">Array of characters to search for.</param>
6204 </member>
6205 <member name="M:MbUnit.Framework.StringAssert.EndsWith(System.String,System.String)">
6206 <summary>Asserts the string <paramref name="s" /> ends with the string <paramref name="pattern" /></summary>
6207 <param name="s">The string to check</param>
6208 <param name="pattern">The string that might be found at the end of <paramref name="s" /></param>
6209 </member>
6210 <member name="M:MbUnit.Framework.StringAssert.FullMatch(System.String,System.String)">
6211 <summary>Asserts the regular expression <paramref name="reg" /> makes a full match on <paramref name="s" /></summary>
6212 <param name="s">String to test.</param>
6213 <param name="reg">Regular expression as a string</param>
6214 </member>
6215 <member name="M:MbUnit.Framework.StringAssert.FullMatch(System.String,System.Text.RegularExpressions.Regex)">
6216 <summary>Asserts the regular expression <paramref name="regex" /> makes a full match on <paramref name="s" /></summary>
6217 <param name="s">String to test.</param>
6218 <param name="regex">Regular expression as a <see cref="T:System.Text.RegularExpressions.Regex" /> object</param>
6219 </member>
6220 <member name="M:MbUnit.Framework.StringAssert.IsEmpty(System.String)">
6221 <summary>Asserts that the string <paramref name="s" /> is non null and empty</summary>
6222 <param name="s">String to test.</param>
6223 </member>
6224 <member name="M:MbUnit.Framework.StringAssert.IsNonEmpty(System.String)">
6225 <summary>Asserts that the string <paramref name="s" /> is non null and non empty</summary>
6226 <param name="s">String to test.</param>
6227 </member>
6228 <member name="M:MbUnit.Framework.StringAssert.Like(System.String,System.String)">
6229 <summary>Asserts the regular expression <paramref name="reg" /> makes a match on <paramref name="s" /></summary>
6230 <param name="s">String to test.</param>
6231 <param name="reg">Regular expression as a string</param>
6232 </member>
6233 <member name="M:MbUnit.Framework.StringAssert.Like(System.String,System.Text.RegularExpressions.Regex)">
6234 <summary>Asserts the regular expression <paramref name="regex" /> makes a match on <paramref name="s" /></summary>
6235 <param name="s">String to test.</param>
6236 <param name="regex">Regular expression as a <see cref="T:System.Text.RegularExpressions.Regex" /> object</param>
6237 </member>
6238 <member name="M:MbUnit.Framework.StringAssert.NotLike(System.String,System.String)">
6239 <summary>Asserts the regular expression <paramref name="reg" /> makes no match on <paramref name="s" /></summary>
6240 <param name="s">String to test.</param>
6241 <param name="reg">Regular expression as a string</param>
6242 </member>
6243 <member name="M:MbUnit.Framework.StringAssert.NotLike(System.String,System.Text.RegularExpressions.Regex)">
6244 <summary>Asserts the regular expression <paramref name="regex" /> makes no match on <paramref name="s" /></summary>
6245 <param name="s">String to test.</param>
6246 <param name="regex">Regular expression as a <see cref="T:System.Text.RegularExpressions.Regex" /> object</param>
6247 </member>
6248 <member name="M:MbUnit.Framework.StringAssert.StartsWith(System.String,System.String)">
6249 <summary>Asserts the string <paramref name="s" /> starts with the string <paramref name="pattern" /></summary>
6250 <param name="s">The string to check</param>
6251 <param name="pattern">The string that might be found at the start of <paramref name="s" /></param>
6252 </member>
6253 <member name="T:MbUnit.Framework.SuiteProviderAttribute">
6254 <summary>Used to tag a test method within a test suite to specify the information contained in an XML file that should be used as parameters for that test. This class cannot be inherited.</summary>
6255 </member>
6256 <member name="P:MbUnit.Framework.SuiteProviderAttribute.DataType">
6257 <summary>Gets or sets the class <see cref="T:System.Type" /> the xml data will be deserialized into for use in your tests</summary>
6258 <value>The class <see cref="T:System.Type" /> for your tests.</value>
6259 </member>
6260 <member name="P:MbUnit.Framework.SuiteProviderAttribute.IsDeserialized">
6261 <summary>Gets a value indicating whether this instance is deserialized.</summary>
6262 <value>
6263 <c>true</c> if this instance is deserialized; otherwise, <c>false</c>.</value>
6264 </member>
6265 <member name="P:MbUnit.Framework.SuiteProviderAttribute.XPath">
6266 <summary>Gets or sets the XPath to the data for the test.</summary>
6267 <value>The XPath string.</value>
6268 <exception cref="T:System.ArgumentNullException">Thrown if the value is null</exception>
6269 </member>
6270 <member name="M:MbUnit.Framework.SuiteProviderAttribute.Deserialize(System.Xml.XmlNode)">
6271 <summary>Deserializes the specified XML node for use in a test.</summary>
6272 <param name="node">The node to deserialize.</param>
6273 <returns>An object of the type specified by <see cref="P:MbUnit.Framework.SuiteProviderAttribute.DataType" /></returns>
6274 </member>
6275 <member name="T:MbUnit.Framework.TearDownAttribute">
6276 <summary>The tear down attribute is applied to a method that is to be invoked after each test in a fixture executes. The method will run once for each test.</summary>
6277 </member>
6278 <member name="T:MbUnit.Framework.TestAttribute">
6279 <summary>
6280 <para> The test attribute is applied to a method that represents a single test case within a fixture. By default, if the method throws an unexpected exception, the test will be deemed to have failed. Otherwise, the test will pass. </para>
6281 <para> The default behavior may be modified by test decorator attributes that may alter the execution environment of the test, catch and reinterpret any exceptions it throws, or impose additional constraints upon its execution. </para>
6282 <para> Output from the test, such as text written to the console, is captured by the framework and will be included in the test report. </para>This class cannot be inherited.</summary>
6283 </member>
6284 <member name="T:MbUnit.Framework.TestCase">
6285 <summary>A single test case of a <see cref="T:MbUnit.Framework.TestSuite" />.</summary>
6286 </member>
6287 <member name="P:MbUnit.Framework.TestCase.Description">
6288 <summary>Gets or sets the description of the test case.</summary>
6289 <value>The description of the test case.</value>
6290 </member>
6291 <member name="P:MbUnit.Framework.TestCase.Name">
6292 <summary>Gets the name of the test case</summary>
6293 <value>The name of the test case</value>
6294 </member>
6295 <member name="P:MbUnit.Framework.TestCase.TestDelegate">
6296 <summary>Gets the test delegate.</summary>
6297 <value>The test delegate.</value>
6298 </member>
6299 <member name="M:MbUnit.Framework.TestCase.GetParameters">
6300 <summary>Gets the parameters (signature) for the test.</summary>
6301 <returns>An <see cref="T:System.Object" /> array</returns>
6302 </member>
6303 <member name="M:MbUnit.Framework.TestCase.Invoke(System.Object,System.Collections.IList)">
6304 <summary>Invokes test using the parameters returned by <see cref="M:MbUnit.Framework.TestCase.GetParameters" />.</summary>
6305 <returns>Return value of the invoked test method. If the method returns void, null is returned.</returns>
6306 </member>
6307 <member name="T:MbUnit.Framework.TestCaseDecoratorBase">
6308 <summary>Base class for test case decorators This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
6309 </member>
6310 <member name="P:MbUnit.Framework.TestCaseDecoratorBase.Description">
6311 <summary>Gets the description of the test case.</summary>
6312 <value>The description.</value>
6313 </member>
6314 <member name="P:MbUnit.Framework.TestCaseDecoratorBase.Name">
6315 <summary>Gets the name of the test case.</summary>
6316 <value>The name.</value>
6317 </member>
6318 <member name="P:MbUnit.Framework.TestCaseDecoratorBase.TestCase">
6319 <summary>Gets the test case.</summary>
6320 <value>The test case.</value>
6321 </member>
6322 <member name="M:MbUnit.Framework.TestCaseDecoratorBase.Invoke(System.Object,System.Collections.IList)">
6323 <summary>Invokes the specified testcase <paramref name="o" /> with the given <see cref="T:System.Collections.IList" /> of <paramref name="args">arguments</paramref>.</summary>
6324 <param name="o">The test case to invoke.</param>
6325 <param name="args">The arguments to pass to the test case.</param>
6326 </member>
6327 <member name="T:MbUnit.Framework.TestCases">
6328 <summary>Factory class that wraps test delegates inside instances <see cref="T:MbUnit.Framework.ITestCase" /> for inclusion in test suites. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
6329 </member>
6330 <member name="M:MbUnit.Framework.TestCases.Case(System.String,System.Delegate,System.Object[])">
6331 <summary>Wraps the <paramref name="test" /> method in a <see cref="T:MbUnit.Framework.TestCase" /> class</summary>
6332 <param name="name">The name of the test case</param>
6333 <param name="test">A <see cref="T:System.Delegate" /> representing the test to include in the suite</param>
6334 <param name="parameters">The parameters for the test method</param>
6335 <returns>A <see cref="T:MbUnit.Framework.TestCase" /> object</returns>
6336 <exception cref="T:System.ArgumentNullException">Thrown if either<paramref name="name" /> or <paramref name="test" /> is null</exception>
6337 <exception cref="T:System.ArgumentException">Thrown if <paramref name="name" /> is an empty string</exception>
6338 </member>
6339 <member name="M:MbUnit.Framework.TestCases.Case(System.String,System.Object,System.Reflection.MethodInfo,System.Object[])">
6340 <summary>Wraps a <see cref="T:System.Reflection.MethodInfo">method</see> in a <see cref="T:MbUnit.Framework.MethodTestCase" /> class</summary>
6341 <param name="name">The name of the method.</param>
6342 <param name="testedInstance">The instance of the object to call the method on.</param>
6343 <param name="test">a <see cref="T:System.Reflection.MethodInfo" /> object identifying the test method.</param>
6344 <param name="parameters">The parameters to pass to the method when run</param>
6345 <returns>A <see cref="T:MbUnit.Framework.MethodTestCase" /> object</returns>
6346 <exception cref="T:System.ArgumentNullException">Thrown if either <paramref name="name" />, <paramref name="test" /> or <paramref name="testedInstance" /> is null</exception>
6347 <exception cref="T:System.ArgumentException">Thrown if <paramref name="name" /> is an empty string</exception>
6348 </member>
6349 <member name="M:MbUnit.Framework.TestCases.ExpectedException(MbUnit.Framework.ITestCase,System.Type)">
6350 <summary>Associates a <paramref name="testCase" /> with an expected exception with the given <paramref name="exceptionType" />.</summary>
6351 <param name="testCase">The test case.</param>
6352 <param name="exceptionType">
6353 <see cref="T:System.Type" /> of the expected exception.</param>
6354 <returns>An <see cref="T:MbUnit.Framework.ExpectedExceptionTestCase" /> object</returns>
6355 <exception cref="T:System.ArgumentNullException">Thrown if either <paramref name="testCase" /> or <paramref name="exceptionType" /> is null</exception>
6356 </member>
6357 <member name="M:MbUnit.Framework.TestCases.Verified(MbUnit.Framework.ITestCase,System.Object)">
6358 <summary>Associates a <paramref name="testCase" /> with an expected result.</summary>
6359 <param name="testCase">The test case.</param>
6360 <param name="expectedResult">The expected result.</param>
6361 <returns>A <see cref="T:MbUnit.Framework.VerifiedTestCase" /> object</returns>
6362 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="testCase" /> is null</exception>
6363 </member>
6364 <member name="T:MbUnit.Framework.TestCategoryAttribute">
6365 <summary>Associates a category name with a test method. The category name can be used to classify tests and build test suites of related tests.</summary>
6366 </member>
6367 <member name="P:MbUnit.Framework.TestCategoryAttribute.Categories">
6368 <summary>Gets the categories for the test.</summary>
6369 <value>The categories for the test.</value>
6370 </member>
6371 <member name="M:MbUnit.Framework.TestCategoryAttribute.GetCategoryTitles">
6372 <summary>Gets the category titles.</summary>
6373 <returns>A <see cref="T:System.Collections.Specialized.StringCollection" /> of category titles</returns>
6374 </member>
6375 <member name="T:MbUnit.Framework.TestFixtureAttribute">
6376 <summary>The test fixture attribute is applied to a class that contains a suite of related test cases. If an error occurs while initializing the fixture or if at least one of the test cases within the fixture fails, then the fixture itself will be deemed to have failed. Otherwise the fixture will pass. Output from the fixture, such as text written to the console, is captured by the framework and will be included in the test report. This class cannot be inherited.</summary>
6377 </member>
6378 <member name="M:MbUnit.Framework.TestFixtureAttribute.GetRun">
6379 <summary>Gets the test runner class defining all the tests to be run within the tagged fixture class.</summary>
6380 <returns>A <see cref="T:MbUnit.Core.Runs.TestFixtureRun" /> object</returns>
6381 </member>
6382 <member name="T:MbUnit.Framework.TestFixtureExtensionAttribute">
6383 <summary>Contributes additional tests and setup or teardown steps to the lifecycle defined by <see cref="T:MbUnit.Framework.TestFixtureAttribute" />. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
6384 </member>
6385 <member name="M:MbUnit.Framework.TestFixtureExtensionAttribute.AddAfterTearDownRuns(MbUnit.Core.Collections.RunCollection)">
6386 <summary>Called to add runs to perform after teardown.</summary>
6387 <param name="runs">The collection to update</param>
6388 </member>
6389 <member name="M:MbUnit.Framework.TestFixtureExtensionAttribute.AddBeforeSetupRuns(MbUnit.Core.Collections.RunCollection)">
6390 <summary>Called to add runs to perform before setup.</summary>
6391 <param name="runs">The collection to update</param>
6392 </member>
6393 <member name="M:MbUnit.Framework.TestFixtureExtensionAttribute.AddTestRuns(MbUnit.Core.Collections.RunCollection)">
6394 <summary>Called to add runs to perform during the test execution cycle.</summary>
6395 <param name="runs">The collection to update</param>
6396 </member>
6397 <member name="T:MbUnit.Framework.TestFixtureSetUpAttribute">
6398 <summary>Tags a method to be run before any tests in the fixture class are run The method to which this attribute is applied must be declared by the fixture class and must not have any parameters. The method may be static. This class cannot be inherited.</summary>
6399 </member>
6400 <member name="T:MbUnit.Framework.TestFixtureTearDownAttribute">
6401 <summary>Tags a method to be run after all the tests in the fixture class have run. The method to which this attribute is applied must be declared by the fixture class and must not have any parameters. The method may be static. This class cannot be inherited.</summary>
6402 </member>
6403 <member name="P:MbUnit.Framework.TestSequenceAttribute.Order">
6404 <summary>Gets or sets the order execution</summary>
6405 <value>The order of execution</value>
6406 </member>
6407 <member name="M:MbUnit.Framework.TestSequenceAttribute.ToString">
6408 <summary>Returns a string that represents the instance.</summary>
6409 <returns>String representing the object.</returns>
6410 </member>
6411 <member name="T:MbUnit.Framework.TestsOnAttribute">
6412 <summary>Tags a class with the object type being tested by the methods it contains. The MbUnit GUI runner uses this information to group tests under the TestsOns tree. The default value is "Unknown"</summary>
6413 </member>
6414 <member name="P:MbUnit.Framework.TestsOnAttribute.TestedType">
6415 <summary>Gets the type of the tested object.</summary>
6416 <value>The type of the tested object.</value>
6417 </member>
6418 <member name="M:MbUnit.Framework.TestsOnAttribute.ToString">
6419 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
6420 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
6421 </member>
6422 <member name="T:MbUnit.Framework.TestSuite">
6423 <summary>A named collection of uniquely named <see cref="T:MbUnit.Framework.TestCase" />.</summary>
6424 </member>
6425 <member name="P:MbUnit.Framework.TestSuite.Name">
6426 <summary>Gets the <see cref="T:MbUnit.Framework.TestSuite" /> name.</summary>
6427 <value>The <see cref="T:MbUnit.Framework.TestSuite" /> name.</value>
6428 </member>
6429 <member name="P:MbUnit.Framework.TestSuite.TestCases">
6430 <summary>Gets a collection of <see cref="T:MbUnit.Framework.TestCase" />.</summary>
6431 <value>A collection of <see cref="T:MbUnit.Framework.TestCase" />.</value>
6432 </member>
6433 <member name="M:MbUnit.Framework.TestSuite.Add(MbUnit.Framework.ITestCase)">
6434 <summary>Adds the test case to the suite</summary>
6435 <param name="testCase">
6436 <see cref="T:MbUnit.Framework.TestCase" /> instance to add.</param>
6437 <exception cref="T:System.InvalidOperationException"> The suite already contains a test case with the same name as <paramref name="testCase" />. </exception>
6438 </member>
6439 <member name="M:MbUnit.Framework.TestSuite.Add(System.String,System.Delegate,System.Object[])">
6440 <summary>Adds a new <see cref="T:MbUnit.Framework.TestCase" /> to the suite.</summary>
6441 <param name="name">Name of the new test case</param>
6442 <param name="test">
6443 <see cref="T:System.Delegate" /> invoked by the test case</param>
6444 <param name="parameters">parameters sent to <paramref name="test" /> when invoked</param>
6445 <exception cref="T:System.ArgumentNullException">
6446 <paramref name="name" /> is a null reference (Nothing in Visual Basic) </exception>
6447 <exception cref="T:System.ArgumentException">
6448 <paramref name="name" /> is empty. </exception>
6449 <exception cref="T:System.InvalidOperationException"> The suite already contains a test case named <paramref name="name" />. </exception>
6450 </member>
6451 <member name="M:MbUnit.Framework.TestSuite.Remove(MbUnit.Framework.TestCase)">
6452 <summary>Removes the test case from the suite</summary>
6453 <param name="testCase">Test case to remove</param>
6454 <exception cref="T:System.ArgumentNullException">
6455 <paramref name="testCase" /> is a null reference (Nothing in Visual Basic) </exception>
6456 </member>
6457 <member name="T:MbUnit.Framework.TestSuiteAttribute">
6458 <summary>Tags a method that returns a <see cref="T:MbUnit.Framework.TestSuite" />. Use within a class tagged with a <see cref="T:MbUnit.Framework.TestSuiteFixtureAttribute" />This class cannot be inherited.</summary>
6459 </member>
6460 <member name="T:MbUnit.Framework.TestSuiteFixtureAttribute">
6461 <summary>Idnetifies a class that will dynamically generate tests and group them in <see cref="T:MbUnit.Framework.TestSuite" />s. This class cannot be inherited.</summary>
6462 </member>
6463 <member name="M:MbUnit.Framework.TestSuiteFixtureAttribute.GetRun">
6464 <summary>Gets the test runner class defining all the tests to be run and the test logic to be used within the tagged fixture class.</summary>
6465 <returns>A <see cref="T:MbUnit.Framework.TestSuiteRun" /> object</returns>
6466 </member>
6467 <member name="T:MbUnit.Framework.TestSuiteSetUpAttribute">
6468 <summary>Tag used to mark a method that needs to be run before TestSuite generation.</summary>
6469 </member>
6470 <member name="T:MbUnit.Framework.ThreadedRepeatAttribute">
6471 <summary>This attribute decorates a test method or fixture class and causes it to be invoked repeatedly on multiple concurrent threads. This class cannot be inherited.</summary>
6472 </member>
6473 <member name="M:MbUnit.Framework.ThreadedRepeatAttribute.GetInvoker(MbUnit.Core.Invokers.IRunInvoker)">
6474 <summary>Returns the invoker class to run the test the given number of times.</summary>
6475 <param name="wrapped">The invoker currently set to run the test across many threads.</param>
6476 <returns>A new <see cref="T:MbUnit.Core.Invokers.RepeatRunInvoker" /> object wrapping <paramref name="wrapped" /></returns>
6477 </member>
6478 <member name="T:MbUnit.Framework.ThreadRunner">
6479 <summary>Class that runs a (test) Winforms method on a new thread. This class cannot be inherited.</summary>
6480 </member>
6481 <member name="P:MbUnit.Framework.ThreadRunner.CatchedException">
6482 <summary>Returns the exception that may have occurred when the deleagte was invoked.</summary>
6483 <value>The caught exception.</value>
6484 </member>
6485 <member name="M:MbUnit.Framework.ThreadRunner.Run">
6486 <summary>Runs the delegates on a new thread</summary>
6487 </member>
6488 <member name="T:MbUnit.Framework.TypeFixtureAttribute">
6489 <summary>Tags the class as a TypeFixture This class cannot be inherited.</summary>
6490 </member>
6491 <member name="M:MbUnit.Framework.TypeFixtureAttribute.GetRun">
6492 <summary>Gets the test runner class defining all the tests to be run and the test logic to be used within the tagged fixture class.</summary>
6493 <returns>A <see cref="T:MbUnit.Core.Runs.SequenceRun" /> object</returns>
6494 </member>
6495 <member name="T:MbUnit.Framework.UsingBaseAttribute">
6496 <summary>Base class for the [Using*] attributes that tag parameters in camobinatorial test methods This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
6497 </member>
6498 <member name="M:MbUnit.Framework.UsingBaseAttribute.GetDomains(TestFu.Operations.IDomainCollection,System.Reflection.ParameterInfo,System.Object)">
6499 <summary>Gets the set of values (the collection of domains) for the parameter.</summary>
6500 <param name="domains">The <see cref="T:TestFu.Operations.IDomainCollection" /> the values generated by the source of data</param>
6501 <param name="parameter">
6502 <see cref="T:System.Reflection.ParameterInfo" /> for the parameter that wants the values.</param>
6503 <param name="fixture">The test fixture.</param>
6504 </member>
6505 <member name="M:MbUnit.Framework.UsingBaseAttribute.InvokeMethod(System.Type,System.Reflection.MethodInfo)">
6506 <summary>Invokes the method.</summary>
6507 <param name="t">The <see cref="T:System.Type" /> containing the <paramref name="method" /> to invoke.</param>
6508 <param name="method">The method to invoke.</param>
6509 <returns>The return value of the method</returns>
6510 </member>
6511 <member name="T:MbUnit.Framework.UsingEnumAttribute">
6512 <summary>Tags a parameter within a [CombinatorialTest]-tagged method to indicate that it should use values from the named enumeration This class cannot be inherited.</summary>
6513 </member>
6514 <member name="P:MbUnit.Framework.UsingEnumAttribute.EnumType">
6515 <summary>Gets the <see cref="T:System.Type" /> of the enumeration containing the values for use by the parameter</summary>
6516 <value>The <see cref="T:System.Type" /> of the enumeration containing the values for use by the parameter</value>
6517 </member>
6518 <member name="M:MbUnit.Framework.UsingEnumAttribute.GetDomains(TestFu.Operations.IDomainCollection,System.Reflection.ParameterInfo,System.Object)">
6519 <summary>Gets the set of values (the collection of domains) for the parameter.</summary>
6520 <param name="domains">The <see cref="T:TestFu.Operations.IDomainCollection" /> the values generated by the source of data</param>
6521 <param name="parameter">
6522 <see cref="T:System.Reflection.ParameterInfo" /> for the parameter that wants the values.</param>
6523 <param name="fixture">The test fixture.</param>
6524 </member>
6525 <member name="T:MbUnit.Framework.UsingFactoriesAttribute">
6526 <summary>Tags a parameter within a [CombinatorialTest]-tagged method to indicate that it should use values from provided by the named factory method(s) This class cannot be inherited.</summary>
6527 </member>
6528 <member name="P:MbUnit.Framework.UsingFactoriesAttribute.FactoryType">
6529 <summary>Gets or sets the factory class.</summary>
6530 <value>The <see cref="T:System.Type" /> of the factory.</value>
6531 </member>
6532 <member name="P:MbUnit.Framework.UsingFactoriesAttribute.MemberNames">
6533 <summary>Returns a semicolon delimited list of factory methods to be used to provide values to the test</summary>
6534 <value>A list of factory method names</value>
6535 </member>
6536 <member name="M:MbUnit.Framework.UsingFactoriesAttribute.GetDomains(TestFu.Operations.IDomainCollection,System.Reflection.ParameterInfo,System.Object)">
6537 <summary>Gets the set of values (the collection of domains) for the parameter.</summary>
6538 <param name="domains">The <see cref="T:TestFu.Operations.IDomainCollection" /> the values generated by the source of data</param>
6539 <param name="parameter">
6540 <see cref="T:System.Reflection.ParameterInfo" /> for the parameter that wants the values.</param>
6541 <param name="fixture">The test fixture.</param>
6542 </member>
6543 <member name="T:MbUnit.Framework.UsingImplementationsAttribute">
6544 <summary>Tags a parameter within a [CombinatorialTest]-tagged method to indicate that it should use all instances of a (parent) type defined within the same assembly as the test for use with the parameter This class cannot be inherited.</summary>
6545 </member>
6546 <member name="M:MbUnit.Framework.UsingImplementationsAttribute.GetDomains(TestFu.Operations.IDomainCollection,System.Reflection.ParameterInfo,System.Object)">
6547 <summary>Gets the set of values (the collection of domains) for the parameter.</summary>
6548 <param name="domains">The <see cref="T:TestFu.Operations.IDomainCollection" /> the values generated by the source of data</param>
6549 <param name="parameter">
6550 <see cref="T:System.Reflection.ParameterInfo" /> for the parameter that wants the values.</param>
6551 <param name="fixture">The test fixture.</param>
6552 </member>
6553 <member name="T:MbUnit.Framework.UsingLinearAttribute">
6554 <summary>Tags a parameter within a [CombinatorialTest]-tagged method to indicate that it should use integer values from within a specified range This class cannot be inherited.</summary>
6555 </member>
6556 <member name="M:MbUnit.Framework.UsingLinearAttribute.GetDomains(TestFu.Operations.IDomainCollection,System.Reflection.ParameterInfo,System.Object)">
6557 <summary>Gets the set of values (the collection of domains) for the parameter.</summary>
6558 <param name="domains">The <see cref="T:TestFu.Operations.IDomainCollection" /> the values generated by the source of data</param>
6559 <param name="parameter">
6560 <see cref="T:System.Reflection.ParameterInfo" /> for the parameter that wants the values.</param>
6561 <param name="fixture">The test fixture.</param>
6562 </member>
6563 <member name="T:MbUnit.Framework.UsingLiteralsAttribute">
6564 <summary>Tags a parameter within a [CombinatorialTest]-tagged method to indicate that it should use string literals from the semi-colon delimited list provided This class cannot be inherited.</summary>
6565 </member>
6566 <member name="P:MbUnit.Framework.UsingLiteralsAttribute.Values">
6567 <summary>The semi-colon delimited list of strings to use for the parameter</summary>
6568 <value>The semi-colon delimited list of strings to use for the parameter</value>
6569 </member>
6570 <member name="M:MbUnit.Framework.UsingLiteralsAttribute.GetDomains(TestFu.Operations.IDomainCollection,System.Reflection.ParameterInfo,System.Object)">
6571 <summary>Gets the set of values (the collection of domains) for the parameter.</summary>
6572 <param name="domains">The <see cref="T:TestFu.Operations.IDomainCollection" /> the values generated by the source of data</param>
6573 <param name="parameter">
6574 <see cref="T:System.Reflection.ParameterInfo" /> for the parameter that wants the values.</param>
6575 <param name="fixture">The test fixture.</param>
6576 </member>
6577 <member name="T:MbUnit.Framework.VerifiedTestCase">
6578 <summary>Used when dynamically adding <see cref="T:MbUnit.Framework.ITestCase" />s with an expected result to a <see cref="T:MbUnit.Framework.TestSuite" /></summary>
6579 </member>
6580 <member name="P:MbUnit.Framework.VerifiedTestCase.ExpectedResult">
6581 <summary>Returns the expected result for the method.</summary>
6582 <value>The expected result.</value>
6583 </member>
6584 <member name="M:MbUnit.Framework.VerifiedTestCase.Invoke(System.Object,System.Collections.IList)">
6585 <summary>Invokes the specified testcase <paramref name="o" /> with the given <see cref="T:System.Collections.IList" /> of <paramref name="args">arguments</paramref>.</summary>
6586 <param name="o">The test case to invoke.</param>
6587 <param name="args">The arguments to pass to the test case.</param>
6588 </member>
6589 <member name="T:MbUnit.Framework.WebAssert">
6590 <summary>Class containing generic assert methods for <see cref="T:System.Web.UI.Control">web controls</see> and the <see cref="T:System.Web.UI.Page" /> object This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
6591 </member>
6592 <member name="M:MbUnit.Framework.WebAssert.AreClientTargetEqual(System.String,System.Web.UI.Page)">
6593 <summary>Verifies that the <see cref="P:System.Web.UI.Page.ClientTarget" /> property of <paramref name="page" /> is equal to <paramref name="expected" />.</summary>
6594 <param name="expected">The expected value.</param>
6595 <param name="page">The <see cref="T:System.Web.UI.Page" /> to test.</param>
6596 </member>
6597 <member name="M:MbUnit.Framework.WebAssert.AreErrorPageEqual(System.String,System.Web.UI.Page)">
6598 <summary>Verifies that the <see cref="P:System.Web.UI.Page.ErrorPage" /> property of <paramref name="page" /> is equal to <paramref name="expected" />.</summary>
6599 <param name="expected">The expected value.</param>
6600 <param name="page">The <see cref="T:System.Web.UI.Page" /> to test.</param>
6601 </member>
6602 <member name="M:MbUnit.Framework.WebAssert.AreTemplateSourceDirectoryEqual(System.Web.UI.Control,System.Web.UI.Control)">
6603 <summary>Verifies that the <see cref="P:System.Web.UI.Control.TemplateSourceDirectory" /> property of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
6604 <param name="expected">The <see cref="T:System.Web.UI.Control" /> to test against.</param>
6605 <param name="actual">The <see cref="T:System.Web.UI.Control" /> to test.</param>
6606 </member>
6607 <member name="M:MbUnit.Framework.WebAssert.AreTemplateSourceDirectoryEqual(System.String,System.Web.UI.Control)">
6608 <summary>Verifies that the <see cref="P:System.Web.UI.Control.TemplateSourceDirectory" /> property of <paramref name="actual" /> is equal to <paramref name="expected" /> are equal.</summary>
6609 <param name="expected">The expected source directory.</param>
6610 <param name="actual">The <see cref="T:System.Web.UI.Control" /> to test.</param>
6611 </member>
6612 <member name="M:MbUnit.Framework.WebAssert.HasControls(System.Web.UI.Control)">
6613 <summary>Verifies that <paramref name="ctrl" /> has child controls.</summary>
6614 <param name="ctrl">The <see cref="T:System.Web.UI.Control" /> to test.</param>
6615 </member>
6616 <member name="M:MbUnit.Framework.WebAssert.HasNoControls(System.Web.UI.Control)">
6617 <summary>Verifies that <paramref name="ctrl" /> has no child controls.</summary>
6618 <param name="ctrl">The <see cref="T:System.Web.UI.Control" /> to test.</param>
6619 </member>
6620 <member name="M:MbUnit.Framework.WebAssert.IsChild(System.Web.UI.Control,System.Web.UI.Control)">
6621 <summary>Verifies that <paramref name="child" /> is a child control of <paramref name="parent" /></summary>
6622 <param name="parent">The parent.</param>
6623 <param name="child">The child.</param>
6624 </member>
6625 <member name="M:MbUnit.Framework.WebAssert.IsChild(System.Web.UI.Control,System.String)">
6626 <summary>Verifies that <paramref name="childID" /> is the ID of a child control of <paramref name="parent" /></summary>
6627 <param name="parent">The parent control.</param>
6628 <param name="childID">The ID of the child control.</param>
6629 </member>
6630 <member name="M:MbUnit.Framework.WebAssert.IsEnableViewState(System.Web.UI.Control)">
6631 <summary>Verifies that <paramref name="ctrl" /> has ViewState enabled.</summary>
6632 <param name="ctrl">The <see cref="T:System.Web.UI.Control" /> to test.</param>
6633 </member>
6634 <member name="M:MbUnit.Framework.WebAssert.IsIDEqual(System.Web.UI.Control,System.String)">
6635 <summary>Verifies that <paramref name="ctrl" /> ID is equal to <paramref name="id" />.</summary>
6636 <param name="ctrl">The <see cref="T:System.Web.UI.Control" /> to test.</param>
6637 <param name="id">The expected ID</param>
6638 </member>
6639 <member name="M:MbUnit.Framework.WebAssert.IsNotChild(System.Web.UI.Control,System.Web.UI.Control)">
6640 <summary>Verifies that <paramref name="child" /> is a not child control of <paramref name="parent" /></summary>
6641 <param name="parent">The parent <see cref="T:System.Web.UI.Control" /></param>
6642 <param name="child">The control that should not be the child of <paramref name="parent" />.</param>
6643 </member>
6644 <member name="M:MbUnit.Framework.WebAssert.IsNotChild(System.Web.UI.Control,System.String)">
6645 <summary>Verifies that <paramref name="childID" /> is the not ID of a child control of <paramref name="parent" /></summary>
6646 <param name="parent">The parent.</param>
6647 <param name="childID">The ID of the control that should not be the child of <paramref name="parent" />.</param>
6648 </member>
6649 <member name="M:MbUnit.Framework.WebAssert.IsNotEnableViewState(System.Web.UI.Control)">
6650 <summary>Verifies that <paramref name="ctrl" /> has <strong>not</strong> ViewState enabled.</summary>
6651 <param name="ctrl">The <see cref="T:System.Web.UI.Control" /> to test.</param>
6652 </member>
6653 <member name="M:MbUnit.Framework.WebAssert.IsNotPostBack(System.Web.UI.Page)">
6654 <summary>Verifies that the <see cref="P:System.Web.UI.Page.IsPostBack" /> property of <paramref name="page" /> is false.</summary>
6655 <param name="page">The <see cref="T:System.Web.UI.Page" /> to test.</param>
6656 </member>
6657 <member name="M:MbUnit.Framework.WebAssert.IsNotSmartNavigation(System.Web.UI.Page)">
6658 <summary>Verifies that the <see cref="P:System.Web.UI.Page.SmartNavigation" /> property of <paramref name="page" /> is false.</summary>
6659 <param name="page">The <see cref="T:System.Web.UI.Page" /> to test.</param>
6660 </member>
6661 <member name="M:MbUnit.Framework.WebAssert.IsNotValid(System.Web.UI.Page)">
6662 <summary>Verifies that the <see cref="P:System.Web.UI.Page.IsValid" /> property of <paramref name="page" /> is false.</summary>
6663 <param name="page">The <see cref="T:System.Web.UI.Page" /> to test.</param>
6664 </member>
6665 <member name="M:MbUnit.Framework.WebAssert.IsNotVisible(System.Web.UI.Control)">
6666 <summary>Verifies that <paramref name="ctrl" /> is not visible.</summary>
6667 <param name="ctrl">The <see cref="T:System.Web.UI.Control" /> to test.</param>
6668 </member>
6669 <member name="M:MbUnit.Framework.WebAssert.IsPostBack(System.Web.UI.Page)">
6670 <summary>Verifies that the <see cref="P:System.Web.UI.Page.IsPostBack" /> property of <paramref name="page" /> is true.</summary>
6671 <param name="page">The <see cref="T:System.Web.UI.Page" /> to test.</param>
6672 </member>
6673 <member name="M:MbUnit.Framework.WebAssert.IsSmartNavigation(System.Web.UI.Page)">
6674 <summary>Verifies that the <see cref="P:System.Web.UI.Page.SmartNavigation" /> property of <paramref name="page" /> is true.</summary>
6675 <param name="page">The <see cref="T:System.Web.UI.Page" /> to test.</param>
6676 </member>
6677 <member name="M:MbUnit.Framework.WebAssert.IsValid(System.Web.UI.Page)">
6678 <summary>Verifies that the <see cref="P:System.Web.UI.Page.IsValid" /> property of <paramref name="page" /> is true.</summary>
6679 <param name="page">The <see cref="T:System.Web.UI.Page" /> to test.</param>
6680 </member>
6681 <member name="M:MbUnit.Framework.WebAssert.IsVisible(System.Web.UI.Control)">
6682 <summary>Verifies that <paramref name="ctrl" /> is visible.</summary>
6683 <param name="ctrl">The <see cref="T:System.Web.UI.Control" /> to test.</param>
6684 </member>
6685 <member name="T:MbUnit.Framework.WriteAttribute">
6686 <summary>Tag use to mark a method that writes data to a device.</summary>
6687 </member>
6688 <member name="T:MbUnit.Framework.XmlAssert">
6689 <summary>Class containing generic assert methods for XML markup This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
6690 </member>
6691 <member name="M:MbUnit.Framework.XmlAssert.XPathEvaluatesTo(System.String,System.String,System.String)">
6692 <summary>Asserts that the flattened String obtained by executing an Xpath on some XML is a particular value</summary>
6693 <param name="anXPathExpression">An X path expression.</param>
6694 <param name="inXml">The XML to test.</param>
6695 <param name="expectedValue">The expected value.</param>
6696 </member>
6697 <member name="M:MbUnit.Framework.XmlAssert.XPathEvaluatesTo(System.String,System.IO.TextReader,System.String)">
6698 <summary>Asserts that the flattened String obtained by executing an Xpath on some XML is a particular value</summary>
6699 <param name="anXPathExpression">An X path expression.</param>
6700 <param name="inXml">The XML to test.</param>
6701 <param name="expectedValue">The expected value.</param>
6702 </member>
6703 <member name="M:MbUnit.Framework.XmlAssert.XPathEvaluatesTo(System.String,MbUnit.Framework.Xml.XmlInput,System.String)">
6704 <summary>Asserts that the flattened String obtained by executing an Xpath on some XML is a particular value</summary>
6705 <param name="anXPathExpression">An X path expression.</param>
6706 <param name="inXml">The XML to test.</param>
6707 <param name="expectedValue">The expected value.</param>
6708 </member>
6709 <member name="M:MbUnit.Framework.XmlAssert.XPathExists(System.String,System.String)">
6710 <summary>Assert that an XPath expression matches at least one node in someXml</summary>
6711 <param name="anXPathExpression">An X path expression.</param>
6712 <param name="inXml">The XML being tested.</param>
6713 </member>
6714 <member name="M:MbUnit.Framework.XmlAssert.XPathExists(System.String,System.IO.TextReader)">
6715 <summary>Assert that an XPath expression matches at least one node in someXml</summary>
6716 <param name="anXPathExpression">An X path expression.</param>
6717 <param name="inXml">A reader ontot eh XML being tested</param>
6718 </member>
6719 <member name="M:MbUnit.Framework.XmlAssert.XPathExists(System.String,MbUnit.Framework.Xml.XmlInput)">
6720 <summary>Assert that an XPath expression matches at least one node in someXml</summary>
6721 <param name="anXPathExpression">An X path expression.</param>
6722 <param name="inXml">The XML to test.</param>
6723 </member>
6724 <member name="M:MbUnit.Framework.XmlAssert.XmlEquals(System.IO.TextReader,System.IO.TextReader)">
6725 <summary>Asserts that two pieces of XML are similar.</summary>
6726 <param name="controlTextReader">The control text reader.</param>
6727 <param name="testTextReader">The test text reader.</param>
6728 </member>
6729 <member name="M:MbUnit.Framework.XmlAssert.XmlEquals(System.String,System.String)">
6730 <summary>Asserts that two pieces of XML are similar.</summary>
6731 <param name="controlText">The control text.</param>
6732 <param name="testText">The test text.</param>
6733 </member>
6734 <member name="M:MbUnit.Framework.XmlAssert.XmlEquals(MbUnit.Framework.Xml.XmlInput,MbUnit.Framework.Xml.XmlInput)">
6735 <summary>Asserts that two pieces of XML are similar.</summary>
6736 <param name="controlInput">The control input.</param>
6737 <param name="testInput">The test input.</param>
6738 </member>
6739 <member name="M:MbUnit.Framework.XmlAssert.XmlEquals(MbUnit.Framework.Xml.XmlDiff)">
6740 <summary>Asserts that two pieces of XMl are similar given their diff</summary>
6741 <param name="xmlDiff">The XML diff.</param>
6742 </member>
6743 <member name="M:MbUnit.Framework.XmlAssert.XmlIdentical(System.IO.TextReader,System.IO.TextReader)">
6744 <summary>Asserts that two pieces of XML are identical.</summary>
6745 <param name="controlTextReader">The control text reader.</param>
6746 <param name="testTextReader">The test text reader.</param>
6747 </member>
6748 <member name="M:MbUnit.Framework.XmlAssert.XmlIdentical(System.String,System.String)">
6749 <summary>Asserts that two pieces of XML are identical.</summary>
6750 <param name="controlText">The control text.</param>
6751 <param name="testText">The test text.</param>
6752 </member>
6753 <member name="M:MbUnit.Framework.XmlAssert.XmlIdentical(MbUnit.Framework.Xml.XmlInput,MbUnit.Framework.Xml.XmlInput)">
6754 <summary>Asserts that two pieces of XML are identical.</summary>
6755 <param name="controlInput">The control input.</param>
6756 <param name="testInput">The test input.</param>
6757 </member>
6758 <member name="M:MbUnit.Framework.XmlAssert.XmlIdentical(MbUnit.Framework.Xml.XmlDiff)">
6759 <summary>Asserts that two pieces of XML are identical given their diff</summary>
6760 <param name="xmlDiff">The XML diff.</param>
6761 </member>
6762 <member name="M:MbUnit.Framework.XmlAssert.XmlNotEquals(MbUnit.Framework.Xml.XmlDiff)">
6763 <summary>Asserts that two pieces of XMl are not similar given their diff</summary>
6764 <param name="xmlDiff">The XML diff.</param>
6765 </member>
6766 <member name="M:MbUnit.Framework.XmlAssert.XmlNotIdentical(MbUnit.Framework.Xml.XmlDiff)">
6767 <summary>Asserts that two pieces of XML are not identical given their diff</summary>
6768 <param name="xmlDiff">The XML diff.</param>
6769 </member>
6770 <member name="M:MbUnit.Framework.XmlAssert.XmlValid(System.String)">
6771 <summary>Asserts that <paramref name="someXml" /> is valid XML.</summary>
6772 <param name="someXml">The XMl to test</param>
6773 </member>
6774 <member name="M:MbUnit.Framework.XmlAssert.XmlValid(System.String,System.String)">
6775 <summary>Asserts that <paramref name="someXml" /> is valid XML given a <paramref name="baseURI" /></summary>
6776 <param name="someXml">The XML to test.</param>
6777 <param name="baseURI">The base URI.</param>
6778 </member>
6779 <member name="M:MbUnit.Framework.XmlAssert.XmlValid(System.IO.TextReader)">
6780 <summary>Asserts that some XML is valid.</summary>
6781 <param name="reader">A <see cref="T:System.IO.TextReader" /> pointing to the XML to test.</param>
6782 </member>
6783 <member name="M:MbUnit.Framework.XmlAssert.XmlValid(System.IO.TextReader,System.String)">
6784 <summary>Asserts that some XML is valid given a <paramref name="baseURI" /></summary>
6785 <param name="reader">A <see cref="T:System.IO.TextReader" /> pointing to the XML to test.</param>
6786 <param name="baseURI">The base URI.</param>
6787 </member>
6788 <member name="M:MbUnit.Framework.XmlAssert.XmlValid(MbUnit.Framework.Xml.XmlInput)">
6789 <summary>Asserts that some XML is valid.</summary>
6790 <param name="xmlInput">The XML input.</param>
6791 </member>
6792 <member name="M:MbUnit.Framework.XmlAssert.XmlValid(MbUnit.Framework.Xml.Validator)">
6793 <summary>Asserts that some XML is valid.</summary>
6794 <param name="validator">A <see cref="T:MbUnit.Framework.Xml.Validator" /> object containing the XML to validate</param>
6795 </member>
6796 <member name="M:MbUnit.Framework.XmlAssert.XslTransformResults(System.String,System.String,System.String)">
6797 <summary>Asserts that the results of an XSL transform on some XML are the expected result</summary>
6798 <param name="xslTransform">The XSL transform.</param>
6799 <param name="xmlToTransform">The XML to transform.</param>
6800 <param name="expectedResult">The expected result.</param>
6801 </member>
6802 <member name="M:MbUnit.Framework.XmlAssert.XslTransformResults(MbUnit.Framework.Xml.XmlInput,MbUnit.Framework.Xml.XmlInput,MbUnit.Framework.Xml.XmlInput)">
6803 <summary>Asserts that the results of an XSL transform on some XML are the expected result</summary>
6804 <param name="xslTransform">The XSL transform.</param>
6805 <param name="xmlToTransform">The XML to transform.</param>
6806 <param name="expectedResult">The expected result.</param>
6807 </member>
6808 <member name="T:MbUnit.Framework.XmlDataProviderAttribute">
6809 <summary>Used to tag a test fixture class to indicate that it uses information contained in an XML file that should be used as parameters for test contained in the class. To be used in conjunction with the <see cref="T:MbUnit.Framework.DataFixtureAttribute" /> and <see cref="T:MbUnit.Framework.ForEachTestAttribute" />.</summary>
6810 </member>
6811 <member name="P:MbUnit.Framework.XmlDataProviderAttribute.ResourceName">
6812 <summary>Gets or sets the path to the XML file</summary>
6813 <value>The path to the XML file</value>
6814 </member>
6815 <member name="P:MbUnit.Framework.XmlDataProviderAttribute.XPath">
6816 <summary>Gets or sets the XPath expression identifying the data to be used in the XMl file</summary>
6817 <value>The XPath expression identifying the data to be used in the XMl file</value>
6818 </member>
6819 <member name="M:MbUnit.Framework.XmlDataProviderAttribute.GetData">
6820 <summary>Gets the <see cref="T:System.Xml.XmlNodeList" /> to be used by the class tagged by this attribute.</summary>
6821 <returns>The <see cref="T:System.Xml.XmlNodeList" /> to be used by the class tagged by this attribute</returns>
6822 </member>
6823 <member name="M:MbUnit.Framework.XmlDataProviderAttribute.LoadResource">
6824 <summary>Loads the resource.</summary>
6825 <returns>A <see cref="T:System.IO.StreamReader" /> pointing to the XML file</returns>
6826 </member>
6827 <member name="T:MbUnit.Framework.CountDownTimer">
6828 <summary>A basic count down timer for use with <see cref="T:MbUnit.Framework.PerfAssert" /> tests. Creates an instance of <see cref="T:MbUnit.Core.Monitoring.TimeMonitor" />, starts and stops it</summary>
6829 </member>
6830 <member name="M:MbUnit.Framework.CountDownTimer.Stop">
6831 <summary>Stops the timer and verifies whether or not the duration of its count is less than the maxDuration specified.</summary>
6832 </member>
6833 <member name="T:MbUnit.Framework.IAssemblyResolver">
6834 <summary>Defines standard interface for Custom Assembly Resolver classes</summary>
6835 </member>
6836 <member name="T:MbUnit.Framework.IBackwardIterator">
6837 <summary>Defines an interface for iterator providers that are backwards-only</summary>
6838 </member>
6839 <member name="T:MbUnit.Framework.IBidirectionalIterator">
6840 <summary>Defines an interface for iterator providers that can move back and forth in their collection of values</summary>
6841 </member>
6842 <member name="T:MbUnit.Framework.IForwardIterator">
6843 <summary>Defines an interface for iterator providers that are forward-only</summary>
6844 </member>
6845 <member name="T:MbUnit.Framework.ITestCase">
6846 <summary>Interface defining a test case to be added to a test suite</summary>
6847 </member>
6848 <member name="T:MbUnit.Framework.ITestComponent">
6849 <summary>Interface defining a test component containing a test suite</summary>
6850 </member>
6851 <member name="T:MbUnit.Framework.ITestSuite">
6852 <summary>Interface defining a test suite</summary>
6853 </member>
6854 <member name="T:MbUnit.Framework.CollectionOrderTest">
6855 <summary>Defines the two collection sort orders for use with the <see cref="T:MbUnit.Framework.CollectionOrderFixtureAttribute" />.</summary>
6856 </member>
6857 <member name="F:MbUnit.Framework.CollectionOrderTest.OrderedAscending">
6858 <summary>Tests ascending order collection</summary>
6859 </member>
6860 <member name="F:MbUnit.Framework.CollectionOrderTest.OrderedDescending">
6861 <summary>Tests ascending order collection</summary>
6862 </member>
6863 <member name="T:MbUnit.Framework.CombinationType">
6864 <summary>Defines how sets of values will be combined in a <see cref="T:MbUnit.Framework.CombinatorialTestAttribute">Combinatorial Test</see></summary>
6865 </member>
6866 <member name="T:MbUnit.Framework.ResourceCleanup">
6867 <summary>Used to specify whether or not the test should delete the extracted resource when the test is complete.</summary>
6868 </member>
6869 <member name="F:MbUnit.Framework.ResourceCleanup.NoCleanup">
6870 <summary>Do not delete the extracted resource</summary>
6871 </member>
6872 <member name="F:MbUnit.Framework.ResourceCleanup.DeleteAfterTest">
6873 <summary>Delete the extracted resource after the test.</summary>
6874 </member>
6875 <member name="F:MbUnit.Framework.SpecialValue.Null">
6876 <summary>When used as parameter in a row test, it will be replaced by null (Nothing in VB).</summary>
6877 </member>
6878 <member name="T:MbUnit.Framework.TestSchedule">
6879 <summary>Specifies options for the execution of a helper method with respect to the running of a test</summary>
6880 </member>
6881 <member name="F:MbUnit.Framework.TestSchedule.BeforeTest">
6882 <summary>Specifies the helper should run before the test executes</summary>
6883 </member>
6884 <member name="F:MbUnit.Framework.TestSchedule.AfterTest">
6885 <summary>Specifies the helper should run after the test executes</summary>
6886 </member>
6887 <member name="T:MbUnit.Framework.TestDelegate">
6888 <summary>Delegate used to identify test methods being wrapped in a <see cref="T:MbUnit.Framework.TestCase" /> object for inclusion in a <see cref="T:MbUnit.Framework.TestSuite" /></summary>
6889 </member>
6890 <member name="T:MbUnit.Framework.Exceptions.MissingDbInfoException">
6891 <summary>Thrown if MbUnit cannot find <see cref="T:MbUnit.Framework.DbRestoreInfoAttribute" /> when required to restore a database from its backup.</summary>
6892 </member>
6893 <member name="T:MbUnit.Framework.Testers.CollectionIndexingTester">
6894 <summary>Collection indexing test class</summary>
6895 </member>
6896 <member name="T:MbUnit.Framework.Testers.CollectionOrderTester">
6897 <summary>Collection order tester class.</summary>
6898 </member>
6899 <member name="T:MbUnit.Framework.Testers.EnumerationTester">
6900 <summary>Tests for the <seealso cref="T:System.Collections.IEnumerable" /> and <seealso cref="T:System.Collections.IEnumerator" />.</summary>
6901 </member>
6902 <member name="F:MbUnit.Framework.Xml.DifferenceType.AttributeValueExplicitlySpecified" />
6903 <member name="F:MbUnit.Framework.Xml.DifferenceType.AttributeNameNotFound" />
6904 <member name="F:MbUnit.Framework.Xml.DifferenceType.AttributeValue">
6905 <summary>Comparing 2 attributes with the same name but different values</summary>
6906 </member>
6907 <member name="F:MbUnit.Framework.Xml.DifferenceType.AttributeSequence">
6908 <summary>Comparing 2 attribute lists with the same attributes in different sequence</summary>
6909 </member>
6910 <member name="F:MbUnit.Framework.Xml.DifferenceType.CDATAValue" />
6911 <member name="F:MbUnit.Framework.Xml.DifferenceType.CommentValue" />
6912 <member name="F:MbUnit.Framework.Xml.DifferenceType.DOCTYPE_NAME_ID" />
6913 <member name="F:MbUnit.Framework.Xml.DifferenceType.DocTypePublicID" />
6914 <member name="F:MbUnit.Framework.Xml.DifferenceType.DocTypeSystemID" />
6915 <member name="F:MbUnit.Framework.Xml.DifferenceType.ElementTagName" />
6916 <member name="F:MbUnit.Framework.Xml.DifferenceType.ELEMENT_NUM_ATTRIBUTES_ID" />
6917 <member name="F:MbUnit.Framework.Xml.DifferenceType.PROCESSING_INSTRUCTION_TARGET_ID" />
6918 <member name="F:MbUnit.Framework.Xml.DifferenceType.PROCESSING_INSTRUCTION_DATA_ID" />
6919 <member name="F:MbUnit.Framework.Xml.DifferenceType.TEXT_VALUE_ID" />
6920 <member name="F:MbUnit.Framework.Xml.DifferenceType.NAMESPACE_PREFIX_ID" />
6921 <member name="F:MbUnit.Framework.Xml.DifferenceType.NAMESPACE_URI_ID" />
6922 <member name="F:MbUnit.Framework.Xml.DifferenceType.NODE_TYPE_ID" />
6923 <member name="F:MbUnit.Framework.Xml.DifferenceType.HAS_CHILD_NODES_ID" />
6924 <member name="F:MbUnit.Framework.Xml.DifferenceType.CHILD_NODELIST_LENGTH_ID" />
6925 <member name="F:MbUnit.Framework.Xml.DifferenceType.CHILD_NODELIST_SEQUENCE_ID" />
6926 <member name="F:MbUnit.Framework.Xml.DifferenceType.HAS_DOCTYPE_DECLARATION_ID" />
6927 <member name="F:MbUnit.Framework.Xml.DifferenceType.HAS_XML_DECLARATION_PREFIX_ID" />
6928 </members>
6929</doc>