nhvalidator 1.2.0.3001.20100722

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. data/lib/Antlr3.Runtime.dll +0 -0
  2. data/lib/Castle.Core.dll +0 -0
  3. data/lib/Castle.Core.xml +3197 -0
  4. data/lib/Castle.DynamicProxy2.dll +0 -0
  5. data/lib/Castle.DynamicProxy2.xml +1249 -0
  6. data/lib/Iesi.Collections.dll +0 -0
  7. data/lib/Iesi.Collections.xml +1903 -0
  8. data/lib/LinFu.DynamicProxy.dll +0 -0
  9. data/lib/NHibernate.ByteCode.Castle.dll +0 -0
  10. data/lib/NHibernate.ByteCode.Castle.xml +40 -0
  11. data/lib/NHibernate.ByteCode.LinFu.dll +0 -0
  12. data/lib/NHibernate.ByteCode.LinFu.xml +8 -0
  13. data/lib/NHibernate.Validator.Specific.dll +0 -0
  14. data/lib/NHibernate.Validator.Specific.pdb +0 -0
  15. data/lib/NHibernate.Validator.Specific.xml +89 -0
  16. data/lib/NHibernate.Validator.Tests.dll +0 -0
  17. data/lib/NHibernate.Validator.Tests.dll.config +115 -0
  18. data/lib/NHibernate.Validator.Tests.pdb +0 -0
  19. data/lib/NHibernate.Validator.dll +0 -0
  20. data/lib/NHibernate.Validator.pdb +0 -0
  21. data/lib/NHibernate.Validator.xml +1693 -0
  22. data/lib/NHibernate.dll +0 -0
  23. data/lib/NHibernate.xml +40555 -0
  24. data/lib/SharpTestsEx.NUnit.dll +0 -0
  25. data/lib/SharpTestsEx.NUnit.xml +682 -0
  26. data/lib/de/NHibernate.Validator.resources.dll +0 -0
  27. data/lib/en/NHibernate.Validator.Tests.resources.dll +0 -0
  28. data/lib/es/NHibernate.Validator.resources.dll +0 -0
  29. data/lib/fa/NHibernate.Validator.resources.dll +0 -0
  30. data/lib/fr/NHibernate.Validator.resources.dll +0 -0
  31. data/lib/hr/NHibernate.Validator.resources.dll +0 -0
  32. data/lib/it/NHibernate.Validator.resources.dll +0 -0
  33. data/lib/log4net.dll +0 -0
  34. data/lib/log4net.xml +28655 -0
  35. data/lib/lv/NHibernate.Validator.resources.dll +0 -0
  36. data/lib/nhvalidator.cfg.xml +5 -0
  37. data/lib/nl/NHibernate.Validator.resources.dll +0 -0
  38. data/lib/nunit.core.dll +0 -0
  39. data/lib/nunit.framework.dll +0 -0
  40. data/lib/nunit.framework.extensions.dll +0 -0
  41. data/lib/nunit.framework.xml +10088 -0
  42. data/lib/pl/NHibernate.Validator.resources.dll +0 -0
  43. data/lib/test-results/NHibernate.Validator.Tests.dll-results.xml +1158 -0
  44. metadata +111 -0
@@ -0,0 +1,682 @@
1
+ <?xml version="1.0"?>
2
+ <doc>
3
+ <assembly>
4
+ <name>SharpTestsEx.NUnit</name>
5
+ </assembly>
6
+ <members>
7
+ <member name="T:SharpTestsEx.ActionAssert">
8
+ <summary>
9
+ Assertion for <see cref="T:System.Action"/>.
10
+ </summary>
11
+ </member>
12
+ <member name="M:SharpTestsEx.ActionAssert.Throws``1(System.Action)">
13
+ <summary>
14
+ Verifies that the given <see cref="T:System.Action"/> throws a specific <see cref="T:System.Exception"/>.
15
+ </summary>
16
+ <typeparam name="T">The specific expected <see cref="T:System.Exception"/>.</typeparam>
17
+ <param name="action">The given <see cref="T:System.Action"/> to execute.</param>
18
+ <returns>The <see cref="T:System.Exception"/>.</returns>
19
+ <exception cref="T:SharpTestsEx.AssertException">The <paramref name="action"/> does not throws the expected <see cref="T:System.Exception"/>. </exception>
20
+ </member>
21
+ <member name="M:SharpTestsEx.ActionAssert.Throws``1(System.Action,System.String)">
22
+ <summary>
23
+ Verifies that the given <see cref="T:System.Action"/> throws a specific <see cref="T:System.Exception"/>.
24
+ </summary>
25
+ <typeparam name="T">The specific expected <see cref="T:System.Exception"/>.</typeparam>
26
+ <param name="action">The given <see cref="T:System.Action"/> to execute.</param>
27
+ <param name="customMessage">A message to display if the assertion fails. This message can be seen in the unit test results. </param>
28
+ <returns>The <see cref="T:System.Exception"/>.</returns>
29
+ <exception cref="T:SharpTestsEx.AssertException">The <paramref name="action"/> does not throws the expected <see cref="T:System.Exception"/>. </exception>
30
+ </member>
31
+ <member name="M:SharpTestsEx.ActionAssert.Throws(System.Action)">
32
+ <summary>
33
+ Verifies that the given <see cref="T:System.Action"/> throws an <see cref="T:System.Exception"/>.
34
+ </summary>
35
+ <param name="action">The given <see cref="T:System.Action"/> to execute.</param>
36
+ <returns>The <see cref="T:System.Exception"/>.</returns>
37
+ <exception cref="T:SharpTestsEx.AssertException">The <paramref name="action"/> does not throws an <see cref="T:System.Exception"/>. </exception>
38
+ </member>
39
+ <member name="M:SharpTestsEx.ActionAssert.Throws(System.Action,System.String)">
40
+ <summary>
41
+ Verifies that the given <see cref="T:System.Action"/> throws an <see cref="T:System.Exception"/>.
42
+ </summary>
43
+ <typeparam name="T">The specific expected <see cref="T:System.Exception"/>.</typeparam>
44
+ <param name="action">The given <see cref="T:System.Action"/> to execute.</param>
45
+ <param name="customMessage">A message to display if the assertion fails. This message can be seen in the unit test results. </param>
46
+ <returns>The <see cref="T:System.Exception"/>.</returns>
47
+ <exception cref="T:SharpTestsEx.AssertException">The <paramref name="action"/> does not throws the expected <see cref="T:System.Exception"/>. </exception>
48
+ </member>
49
+ <member name="M:SharpTestsEx.ActionAssert.NotThrow(System.Action)">
50
+ <summary>
51
+ Verifies that the given <see cref="T:System.Action"/> does not throw any <see cref="T:System.Exception"/>.
52
+ </summary>
53
+ <param name="action">The given <see cref="T:System.Action"/> to execute.</param>
54
+ </member>
55
+ <member name="M:SharpTestsEx.ActionAssert.NotThrow(System.Action,System.String)">
56
+ <summary>
57
+ Verifies that the given <see cref="T:System.Action"/> does not throw any <see cref="T:System.Exception"/>.
58
+ </summary>
59
+ <param name="action">The given <see cref="T:System.Action"/> to execute.</param>
60
+ <param name="customMessage">A message to display if the assertion fails. This message can be seen in the unit test results. </param>
61
+ </member>
62
+ <member name="T:SharpTestsEx.Assertions.ExpressionSplitter">
63
+ <summary>
64
+ Split a complex binary expression in a plain list of its parts.
65
+ </summary>
66
+ </member>
67
+ <member name="T:SharpTestsEx.Assertions.ExpressionStringBuilder">
68
+ <summary>
69
+ The intention of <see cref="T:SharpTestsEx.Assertions.ExpressionStringBuilder"/> is to create a more readable
70
+ string representation for the failure message.
71
+ </summary>
72
+ </member>
73
+ <member name="T:SharpTestsEx.Assertions.NullAssertion`1">
74
+ <summary>
75
+ Verifies that the specified object is null. The assertion fails if it is not null.
76
+ </summary>
77
+ <typeparam name="TA">Type of the actual value subject of the assertion.</typeparam>
78
+ </member>
79
+ <member name="T:SharpTestsEx.Assertions.Assertion`2">
80
+ <summary>
81
+ Represent a Assertion template where the real logic is delegated.
82
+ </summary>
83
+ <typeparam name="TA">Type of the actual value.</typeparam>
84
+ <typeparam name="TE">Type of the expected value.</typeparam>
85
+ </member>
86
+ <member name="M:SharpTestsEx.Assertions.NullAssertion`1.#ctor">
87
+ <summary>
88
+ Initializes a new instance of the <see cref="T:SharpTestsEx.Assertions.NullAssertion`1"/> class.
89
+ </summary>
90
+ </member>
91
+ <member name="T:SharpTestsEx.Assertions.ObjectEqualsAssertion`2">
92
+ <summary>
93
+ Verifies that two specified generic type data are equal. The assertion fails if they are not equal.
94
+ </summary>
95
+ <typeparam name="TA">Type of the actual value.</typeparam>
96
+ <typeparam name="TE">Type of the expected value.</typeparam>
97
+ <remarks>
98
+ The comparison is done ny the base <see cref="M:System.Object.Equals(System.Object,System.Object)"/>.
99
+ </remarks>
100
+ </member>
101
+ <member name="M:SharpTestsEx.Assertions.ObjectEqualsAssertion`2.#ctor(`1)">
102
+ <summary>
103
+ Initializes a new instance of the <see cref="T:SharpTestsEx.Assertions.ObjectEqualsAssertion`2"/> class.
104
+ </summary>
105
+ <param name="expected">The value to compare.</param>
106
+ </member>
107
+ <member name="T:SharpTestsEx.Assertions.SameInstanceAssertion`2">
108
+ <summary>
109
+ Verifies that two specified instances are the same object instance..
110
+ </summary>
111
+ <typeparam name="TA">Type of the actual value.</typeparam>
112
+ <typeparam name="TE">Type of the expected value.</typeparam>
113
+ </member>
114
+ <member name="M:SharpTestsEx.Assertions.SameInstanceAssertion`2.#ctor(`1)">
115
+ <summary>
116
+ Initializes a new instance of the <see cref="T:SharpTestsEx.Assertions.SameInstanceAssertion`2"/> class.
117
+ </summary>
118
+ <param name="expected">The value to compare.</param>
119
+ </member>
120
+ <member name="T:SharpTestsEx.ClassConstraintsExtensions">
121
+ <summary>
122
+ Extensions for constraint over object instances.
123
+ </summary>
124
+ </member>
125
+ <member name="M:SharpTestsEx.ClassConstraintsExtensions.SameInstanceAs(SharpTestsEx.IClassBeConstraints,System.Object)">
126
+ <summary>
127
+ Verifies that actual is the same instance than <paramref name="expected"/>.
128
+ </summary>
129
+ <param name="constraint">The <see cref="T:SharpTestsEx.IClassBeConstraints"/> extented.</param>
130
+ <param name="expected">The expected object instance.</param>
131
+ <returns>Chainable And constraint</returns>
132
+ </member>
133
+ <member name="M:SharpTestsEx.ClassConstraintsExtensions.InstanceOf``1(SharpTestsEx.IClassBeConstraints)">
134
+ <summary>
135
+ Verifies that actual is an instance of <typeparamref name="T"/>.
136
+ </summary>
137
+ <typeparam name="T">The <see cref="T:System.Type"/> expected.</typeparam>
138
+ <param name="constraint">The <see cref="T:SharpTestsEx.IClassBeConstraints"/> extented.</param>
139
+ <returns>Chainable And constraint</returns>
140
+ </member>
141
+ <member name="M:SharpTestsEx.ClassConstraintsExtensions.AssignableFrom``1(SharpTestsEx.IClassBeConstraints)">
142
+ <summary>
143
+ Verifies that actual instance is assignable from <typeparamref name="T"/>.
144
+ </summary>
145
+ <typeparam name="T">The <see cref="T:System.Type"/> expected.</typeparam>
146
+ <param name="constraint">The <see cref="T:SharpTestsEx.IClassBeConstraints"/> extented.</param>
147
+ <returns>Chainable And constraint</returns>
148
+ </member>
149
+ <member name="M:SharpTestsEx.ClassConstraintsExtensions.AssignableTo``1(SharpTestsEx.IClassBeConstraints)">
150
+ <summary>
151
+ Verifies that actual instance is assignable to <typeparamref name="T"/>.
152
+ </summary>
153
+ <typeparam name="T">The <see cref="T:System.Type"/> expected.</typeparam>
154
+ <param name="constraint">The <see cref="T:SharpTestsEx.IClassBeConstraints"/> extented.</param>
155
+ <returns>Chainable And constraint</returns>
156
+ </member>
157
+ <member name="M:SharpTestsEx.ClassConstraintsExtensions.BinarySerializable(SharpTestsEx.IClassBeConstraints)">
158
+ <summary>
159
+ Verifies that actual instance is serializable using <see cref="T:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter"/>.
160
+ </summary>
161
+ <param name="constraint">The <see cref="T:SharpTestsEx.IClassBeConstraints"/> extented.</param>
162
+ <returns>Chainable And constraint</returns>
163
+ </member>
164
+ <member name="M:SharpTestsEx.ClassConstraintsExtensions.XmlSerializable(SharpTestsEx.IClassBeConstraints)">
165
+ <summary>
166
+ Verifies that actual instance is serializable using <see cref="T:System.Xml.Serialization.XmlSerializer"/>.
167
+ </summary>
168
+ <param name="constraint">The <see cref="T:SharpTestsEx.IClassBeConstraints"/> extented.</param>
169
+ <returns>Chainable And constraint</returns>
170
+ </member>
171
+ <member name="T:SharpTestsEx.EnumerableExtensions">
172
+ <summary>
173
+ <see cref="T:System.Collections.Generic.IEnumerable`1"/> etensions methods.
174
+ </summary>
175
+ </member>
176
+ <member name="M:SharpTestsEx.EnumerableExtensions.PositionOfFirstDifference``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
177
+ <summary>
178
+ Find the first position where two sequence differ
179
+ </summary>
180
+ <typeparam name="TSource">The type of the elements of the input sequences.</typeparam>
181
+ <param name="first">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> to compare to second</param>
182
+ <param name="second">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> to compare to the first sequence. </param>
183
+ <returns>The position of the first difference; otherwise -1 where the two sequences has the same sequence.</returns>
184
+ </member>
185
+ <member name="T:SharpTestsEx.ExceptionExtensions">
186
+ <summary>
187
+ Useful extensions to test <see cref="T:System.Exception"/>s.
188
+ </summary>
189
+ </member>
190
+ <member name="M:SharpTestsEx.ExceptionExtensions.InnerExceptions(System.Exception)">
191
+ <summary>
192
+ Returns a sequence of all Inner Exceptions.
193
+ </summary>
194
+ <param name="source">The root <see cref="T:System.Exception"/> </param>
195
+ <returns>A <see cref="T:System.Collections.Generic.IEnumerable`1"/> of all Inner Exceptions</returns>
196
+ </member>
197
+ <member name="M:SharpTestsEx.ExceptionExtensions.Exceptions(System.Exception)">
198
+ <summary>
199
+ Returns a sequence of including the root <see cref="T:System.Exception"/> and all Inner Exceptions.
200
+ </summary>
201
+ <param name="source">The root <see cref="T:System.Exception"/> </param>
202
+ <returns>A <see cref="T:System.Collections.Generic.IEnumerable`1"/> of including the root <see cref="T:System.Exception"/> and all Inner Exceptions.</returns>
203
+ </member>
204
+ <member name="T:SharpTestsEx.IConstraints`1">
205
+ <summary>
206
+ Basic contract for a generic constraint.
207
+ </summary>
208
+ <typeparam name="T">The type of the 'actual' value subject of the test.</typeparam>
209
+ </member>
210
+ <member name="T:SharpTestsEx.IActionConstraints">
211
+ <summary>
212
+ Constraints for <see cref="T:System.Action"/>.
213
+ </summary>
214
+ </member>
215
+ <member name="M:SharpTestsEx.IActionConstraints.Throw``1">
216
+ <summary>
217
+ Verifies that the <see cref="T:System.Action"/> throws a specific <see cref="T:System.Exception"/>.
218
+ </summary>
219
+ <typeparam name="TException">The specific <see cref="T:System.Exception"/> subclass expected. </typeparam>
220
+ <returns>Chainable And constraint</returns>
221
+ </member>
222
+ <member name="M:SharpTestsEx.IActionConstraints.Throw">
223
+ <summary>
224
+ Verifies that the <see cref="T:System.Action"/> throws an.
225
+ </summary>
226
+ <returns>Chainable And constraint</returns>
227
+ </member>
228
+ <member name="M:SharpTestsEx.IActionConstraints.NotThrow">
229
+ <summary>
230
+ Verifies that the <see cref="T:System.Action"/> does not throw any <see cref="T:System.Exception"/>.
231
+ </summary>
232
+ </member>
233
+ <member name="T:SharpTestsEx.IThrowConstraints`1">
234
+ <summary>
235
+ Chainable constraint for <see cref="P:SharpTestsEx.IThrowConstraints`1.Exception"/>
236
+ </summary>
237
+ <typeparam name="TException">The specific <see cref="P:SharpTestsEx.IThrowConstraints`1.Exception"/> subclass expected. </typeparam>
238
+ </member>
239
+ <!-- Badly formed XML comment ignored for member "P:SharpTestsEx.IThrowConstraints`1.ValueOf" -->
240
+ <!-- Badly formed XML comment ignored for member "P:SharpTestsEx.IThrowConstraints`1.Exception" -->
241
+ <member name="T:SharpTestsEx.IAssertionInfo`1">
242
+ <summary>
243
+ Assertion information.
244
+ </summary>
245
+ <typeparam name="T">The type of the value subject of the assertion.</typeparam>
246
+ </member>
247
+ <member name="P:SharpTestsEx.IAssertionInfo`1.Actual">
248
+ <summary>
249
+ Subject of the assertion.
250
+ </summary>
251
+ </member>
252
+ <member name="P:SharpTestsEx.IAssertionInfo`1.IsNegated">
253
+ <summary>
254
+ The assertion is negated ?
255
+ </summary>
256
+ </member>
257
+ <member name="P:SharpTestsEx.IAssertionInfo`1.FailureMessage">
258
+ <summary>
259
+ The title of the assertion ("message" in MsTests terminology)
260
+ </summary>
261
+ </member>
262
+ <member name="T:SharpTestsEx.IBooleanConstraints">
263
+ <summary>
264
+ Constraint over boolean values.
265
+ </summary>
266
+ </member>
267
+ <member name="T:SharpTestsEx.IBooleanBeConstraints">
268
+ <summary>
269
+ Constraints for boolean "Should Be"
270
+ </summary>
271
+ </member>
272
+ <member name="M:SharpTestsEx.IBooleanBeConstraints.True">
273
+ <summary>
274
+ Verifies that actual is true.
275
+ </summary>
276
+ </member>
277
+ <member name="M:SharpTestsEx.IBooleanBeConstraints.False">
278
+ <summary>
279
+ Verifies that actual is true.
280
+ </summary>
281
+ </member>
282
+ <member name="P:SharpTestsEx.ExtensionsImpl.NegableConstraints`2.Not">
283
+ <summary>
284
+ Negate next constraint.
285
+ </summary>
286
+ </member>
287
+ <member name="T:SharpTestsEx.IClassConstraints">
288
+ <summary>
289
+ Constraint over object instances.
290
+ </summary>
291
+ </member>
292
+ <member name="T:SharpTestsEx.IClassConstraints`1">
293
+ <summary>
294
+ Constraints for object instance of a specific gine <see cref="T:System.Type"/>.
295
+ </summary>
296
+ <typeparam name="TValue">The <see cref="T:System.Type"/> of the instance.</typeparam>
297
+ </member>
298
+ <member name="P:SharpTestsEx.IClassConstraints`1.ValueOf">
299
+ <summary>
300
+ The actual value
301
+ </summary>
302
+ </member>
303
+ <member name="P:SharpTestsEx.IClassConstraints`1.Value">
304
+ <summary>
305
+ The actual value
306
+ </summary>
307
+ </member>
308
+ <member name="T:SharpTestsEx.IClassBeConstraints">
309
+ <summary>
310
+ Constraints for object instance "Should Be"
311
+ </summary>
312
+ </member>
313
+ <member name="M:SharpTestsEx.IClassBeConstraints.EqualTo(System.Object)">
314
+ <summary>
315
+ Verifies that actual is equal to <paramref name="expected"/>.
316
+ </summary>
317
+ <param name="expected">The expected instance</param>
318
+ <returns>Chainable And constraint</returns>
319
+ </member>
320
+ <member name="M:SharpTestsEx.IClassBeConstraints.Null">
321
+ <summary>
322
+ Verifies that the <see cref="T:System.Object"/> is null.
323
+ </summary>
324
+ <returns>Chainable And constraint</returns>
325
+ </member>
326
+ <member name="M:SharpTestsEx.IClassBeConstraints.OfType``1">
327
+ <summary>
328
+ Verifies that the actual is an instance of a specific type.
329
+ </summary>
330
+ <typeparam name="T">The expected <see cref="T:System.Type"/>.</typeparam>
331
+ <returns>
332
+ A <see cref="T:SharpTestsEx.IClassConstraints`1"/> for the instance converted to
333
+ the specified type to start a chained assertion.
334
+ </returns>
335
+ </member>
336
+ <member name="T:SharpTestsEx.IComparableConstraints`1">
337
+ <summary>
338
+ Constraint over <see cref="T:System.IComparable"/> instances.
339
+ </summary>
340
+ <typeparam name="T">The concrete type of actual value.</typeparam>
341
+ </member>
342
+ <member name="T:SharpTestsEx.IComparableBeConstraints`1">
343
+ <summary>
344
+ Constraints for <see cref="T:System.IComparable"/> instance ("Should Be")
345
+ </summary>
346
+ <typeparam name="T"></typeparam>
347
+ </member>
348
+ <member name="M:SharpTestsEx.IComparableBeConstraints`1.EqualTo(System.IComparable)">
349
+ <summary>
350
+ Verifies that actual is equal to <paramref name="expected"/>.
351
+ </summary>
352
+ <param name="expected">The expected instance</param>
353
+ <returns>Chainable And constraint</returns>
354
+ </member>
355
+ <member name="M:SharpTestsEx.IComparableBeConstraints`1.GreaterThan(System.IComparable)">
356
+ <summary>
357
+ Verifies that actual is greater than <paramref name="expected"/>.
358
+ </summary>
359
+ <param name="expected">The expected instance</param>
360
+ <returns>Chainable And constraint</returns>
361
+ </member>
362
+ <member name="M:SharpTestsEx.IComparableBeConstraints`1.LessThan(System.IComparable)">
363
+ <summary>
364
+ Verifies that actual is less than <paramref name="expected"/>.
365
+ </summary>
366
+ <param name="expected">The expected instance</param>
367
+ <returns>Chainable And constraint</returns>
368
+ </member>
369
+ <member name="M:SharpTestsEx.IComparableBeConstraints`1.GreaterThanOrEqualTo(System.IComparable)">
370
+ <summary>
371
+ Verifies that actual is greater than or equal to <paramref name="expected"/>.
372
+ </summary>
373
+ <param name="expected">The expected instance</param>
374
+ <returns>Chainable And constraint</returns>
375
+ </member>
376
+ <member name="M:SharpTestsEx.IComparableBeConstraints`1.LessThanOrEqualTo(System.IComparable)">
377
+ <summary>
378
+ Verifies that actual is less than or equal to <paramref name="expected"/>.
379
+ </summary>
380
+ <param name="expected">The expected instance</param>
381
+ <returns>Chainable And constraint</returns>
382
+ </member>
383
+ <member name="M:SharpTestsEx.IComparableBeConstraints`1.IncludedIn(System.IComparable,System.IComparable)">
384
+ <summary>
385
+ Verifies that actual is included in the range <paramref name="lowLimit"/>-<paramref name="highLimit"/>.
386
+ </summary>
387
+ <param name="lowLimit">The less aceptable value.</param>
388
+ <param name="highLimit">The higher aceptable value.</param>
389
+ <returns>Chainable And constraint</returns>
390
+ </member>
391
+ <member name="M:SharpTestsEx.ExtensionsImpl.EnumerableBeConstraints`1.Null">
392
+ <summary>
393
+ Verifies that the <see cref="T:System.Collections.Generic.IEnumerable`1"/> instance is null.
394
+ </summary>
395
+ <returns>Chainable And constraint</returns>
396
+ </member>
397
+ <member name="M:SharpTestsEx.ExtensionsImpl.EnumerableBeConstraints`1.Empty">
398
+ <summary>
399
+ Verifies that the <see cref="T:System.Collections.Generic.IEnumerable`1"/> is empty.
400
+ </summary>
401
+ <returns>Chainable And constraint</returns>
402
+ </member>
403
+ <member name="M:SharpTestsEx.ExtensionsImpl.StringBeConstraints.Null">
404
+ <summary>
405
+ Verifies that the <see cref="T:System.String"/> is null.
406
+ </summary>
407
+ <returns>Chainable And constraint</returns>
408
+ </member>
409
+ <member name="M:SharpTestsEx.ExtensionsImpl.StringBeConstraints.Empty">
410
+ <summary>
411
+ Verifies that the <see cref="T:System.String"/> is empty.
412
+ </summary>
413
+ <returns>Chainable And constraint</returns>
414
+ </member>
415
+ <member name="M:SharpTestsEx.ExtensionsImpl.TypeBeConstraints.Null">
416
+ <summary>
417
+ Verifies that the <see cref="T:System.Type"/> instance is null.
418
+ </summary>
419
+ <returns>Chainable And constraint</returns>
420
+ </member>
421
+ <member name="T:SharpTestsEx.MessageBuilderInfo`2">
422
+ <summary>
423
+ Collection information to build the failure message
424
+ </summary>
425
+ <typeparam name="TActual">Type of the actual value.</typeparam>
426
+ <typeparam name="TExpected">Type of the expected value.</typeparam>
427
+ </member>
428
+ <member name="P:SharpTestsEx.MessageBuilderInfo`2.Actual">
429
+ <summary>
430
+ The actual value under test.
431
+ </summary>
432
+ </member>
433
+ <member name="P:SharpTestsEx.MessageBuilderInfo`2.Expected">
434
+ <summary>
435
+ The expected value of the test.
436
+ </summary>
437
+ </member>
438
+ <member name="P:SharpTestsEx.MessageBuilderInfo`2.AssertionPredicate">
439
+ <summary>
440
+ The name of the assertion
441
+ </summary>
442
+ <example>
443
+ "be EqualTo"
444
+ </example>
445
+ </member>
446
+ <member name="P:SharpTestsEx.MessageBuilderInfo`2.CustomMessage">
447
+ <summary>
448
+ The user custom message.
449
+ </summary>
450
+ </member>
451
+ <member name="T:SharpTestsEx.ObjectExtensions">
452
+ <summary>
453
+ Extensions for any System.Object.
454
+ </summary>
455
+ </member>
456
+ <member name="M:SharpTestsEx.ObjectExtensions.FieldValue``1(System.Object,System.String)">
457
+ <summary>
458
+ Allow access to a private field of a class instance.
459
+ </summary>
460
+ <typeparam name="T">The <see cref="T:System.Type"/> of the field. </typeparam>
461
+ <param name="source">The class instance.</param>
462
+ <param name="fieldName">The field name.</param>
463
+ <returns>The value of the field.</returns>
464
+ </member>
465
+ <member name="T:SharpTestsEx.Properties.Resources">
466
+ <summary>
467
+ A strongly-typed resource class, for looking up localized strings, etc.
468
+ </summary>
469
+ </member>
470
+ <member name="P:SharpTestsEx.Properties.Resources.ResourceManager">
471
+ <summary>
472
+ Returns the cached ResourceManager instance used by this class.
473
+ </summary>
474
+ </member>
475
+ <member name="P:SharpTestsEx.Properties.Resources.Culture">
476
+ <summary>
477
+ Overrides the current thread's CurrentUICulture property for all
478
+ resource lookups using this strongly typed resource class.
479
+ </summary>
480
+ </member>
481
+ <member name="P:SharpTestsEx.Properties.Resources.AssertionVerb">
482
+ <summary>
483
+ Looks up a localized string similar to Should.
484
+ </summary>
485
+ </member>
486
+ <member name="P:SharpTestsEx.Properties.Resources.Be">
487
+ <summary>
488
+ Looks up a localized string similar to Be.
489
+ </summary>
490
+ </member>
491
+ <member name="P:SharpTestsEx.Properties.Resources.EmptyEnumerable">
492
+ <summary>
493
+ Looks up a localized string similar to &lt;Empty&gt;.
494
+ </summary>
495
+ </member>
496
+ <member name="P:SharpTestsEx.Properties.Resources.ExceptionMsgAccessToField">
497
+ <summary>
498
+ Looks up a localized string similar to Can&apos;t access to a field of a null value..
499
+ </summary>
500
+ </member>
501
+ <member name="P:SharpTestsEx.Properties.Resources.ExceptionMsgFieldNameTmpl">
502
+ <summary>
503
+ Looks up a localized string similar to The class {0} does not contain a field named {1}..
504
+ </summary>
505
+ </member>
506
+ <member name="P:SharpTestsEx.Properties.Resources.ExceptionMsgInvalidCastTmpl">
507
+ <summary>
508
+ Looks up a localized string similar to The class {0} does contain a field named {1} but its type is {2} and not {3}..
509
+ </summary>
510
+ </member>
511
+ <member name="P:SharpTestsEx.Properties.Resources.ExceptionMsgSerializableNull">
512
+ <summary>
513
+ Looks up a localized string similar to Can&apos;t check serialization for (null) value..
514
+ </summary>
515
+ </member>
516
+ <member name="P:SharpTestsEx.Properties.Resources.ExpectedTmpl">
517
+ <summary>
518
+ Looks up a localized string similar to Expected: {0}.
519
+ </summary>
520
+ </member>
521
+ <member name="P:SharpTestsEx.Properties.Resources.FailureMsgDifferences">
522
+ <summary>
523
+ Looks up a localized string similar to Differences :.
524
+ </summary>
525
+ </member>
526
+ <member name="P:SharpTestsEx.Properties.Resources.FailureMsgEnumerableDiffPosTmpl">
527
+ <summary>
528
+ Looks up a localized string similar to Values differ at position {0}..
529
+ </summary>
530
+ </member>
531
+ <member name="P:SharpTestsEx.Properties.Resources.FailureMsgStringDiffPosTmpl">
532
+ <summary>
533
+ Looks up a localized string similar to Strings differ at position {0}..
534
+ </summary>
535
+ </member>
536
+ <member name="P:SharpTestsEx.Properties.Resources.FoundTmpl">
537
+ <summary>
538
+ Looks up a localized string similar to Found : {0}.
539
+ </summary>
540
+ </member>
541
+ <member name="P:SharpTestsEx.Properties.Resources.Negation">
542
+ <summary>
543
+ Looks up a localized string similar to Not.
544
+ </summary>
545
+ </member>
546
+ <member name="P:SharpTestsEx.Properties.Resources.NullValue">
547
+ <summary>
548
+ Looks up a localized string similar to (null).
549
+ </summary>
550
+ </member>
551
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateBeAssignableFrom">
552
+ <summary>
553
+ Looks up a localized string similar to Be Assignable From.
554
+ </summary>
555
+ </member>
556
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateBeAssignableTo">
557
+ <summary>
558
+ Looks up a localized string similar to Be Assignable To.
559
+ </summary>
560
+ </member>
561
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateBeBinarySerializable">
562
+ <summary>
563
+ Looks up a localized string similar to Be Binary Serializable.
564
+ </summary>
565
+ </member>
566
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateBeEmpty">
567
+ <summary>
568
+ Looks up a localized string similar to Be Empty.
569
+ </summary>
570
+ </member>
571
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateBeEqualTo">
572
+ <summary>
573
+ Looks up a localized string similar to Be Equal To.
574
+ </summary>
575
+ </member>
576
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateBeGreaterThan">
577
+ <summary>
578
+ Looks up a localized string similar to Be Greater Than.
579
+ </summary>
580
+ </member>
581
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateBeGreaterThanOrEquaTo">
582
+ <summary>
583
+ Looks up a localized string similar to Be Greater than Or Equal to.
584
+ </summary>
585
+ </member>
586
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateBeInRange">
587
+ <summary>
588
+ Looks up a localized string similar to Be in Range.
589
+ </summary>
590
+ </member>
591
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateBeInstanceOf">
592
+ <summary>
593
+ Looks up a localized string similar to Be Instance Of.
594
+ </summary>
595
+ </member>
596
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateBeLessThan">
597
+ <summary>
598
+ Looks up a localized string similar to Be Less Than.
599
+ </summary>
600
+ </member>
601
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateBeLessThanOrEqualTo">
602
+ <summary>
603
+ Looks up a localized string similar to Be Less than Or Equal to.
604
+ </summary>
605
+ </member>
606
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateBeNull">
607
+ <summary>
608
+ Looks up a localized string similar to Be Null.
609
+ </summary>
610
+ </member>
611
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateBeOrdered">
612
+ <summary>
613
+ Looks up a localized string similar to Be Ordered.
614
+ </summary>
615
+ </member>
616
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateBeOrderedAscending">
617
+ <summary>
618
+ Looks up a localized string similar to Be Ordered ascending.
619
+ </summary>
620
+ </member>
621
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateBeSameAs">
622
+ <summary>
623
+ Looks up a localized string similar to Be Same instance As.
624
+ </summary>
625
+ </member>
626
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateBeSubClassOf">
627
+ <summary>
628
+ Looks up a localized string similar to Be SubClass Of.
629
+ </summary>
630
+ </member>
631
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateBeSubsetOf">
632
+ <summary>
633
+ Looks up a localized string similar to Be Subset Of.
634
+ </summary>
635
+ </member>
636
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateBeXmlSerializable">
637
+ <summary>
638
+ Looks up a localized string similar to Be Xml Serializable.
639
+ </summary>
640
+ </member>
641
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateContain">
642
+ <summary>
643
+ Looks up a localized string similar to Contain.
644
+ </summary>
645
+ </member>
646
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateDoesNotThrow">
647
+ <summary>
648
+ Looks up a localized string similar to Does Not throw.
649
+ </summary>
650
+ </member>
651
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateHaveAttribute">
652
+ <summary>
653
+ Looks up a localized string similar to Have Attribute.
654
+ </summary>
655
+ </member>
656
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateHaveSameSequenceAs">
657
+ <summary>
658
+ Looks up a localized string similar to Have Same Sequence As.
659
+ </summary>
660
+ </member>
661
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateHaveSameValuesAs">
662
+ <summary>
663
+ Looks up a localized string similar to Have Same Values As.
664
+ </summary>
665
+ </member>
666
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateHaveUniqueValues">
667
+ <summary>
668
+ Looks up a localized string similar to Have Unique Values.
669
+ </summary>
670
+ </member>
671
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateHaveValue">
672
+ <summary>
673
+ Looks up a localized string similar to Have Value.
674
+ </summary>
675
+ </member>
676
+ <member name="P:SharpTestsEx.Properties.Resources.PredicateThrows">
677
+ <summary>
678
+ Looks up a localized string similar to Throws an exception.
679
+ </summary>
680
+ </member>
681
+ </members>
682
+ </doc>