fluentassertions 1.2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,545 @@
1
+ <?xml version="1.0"?>
2
+ <doc>
3
+ <assembly>
4
+ <name>FluentAssertions</name>
5
+ </assembly>
6
+ <members>
7
+ <member name="M:FluentAssertions.AssertionsBase`1.VerifyThat(System.Func{System.Boolean},System.String,System.Object,System.Object,System.String,System.Object[])">
8
+ <summary>
9
+ Asserts that the supplied <paramref name="condition"/> is met.
10
+ </summary>
11
+ <param name="condition">The condition to assert</param>
12
+ <param name="failureMessage">
13
+ The message that will be used in the <see cref="T:FluentAssertions.SpecificationMismatchException"/>. This should describe what
14
+ was expected and why. This message should contain the following 3 placeholders:<br/>
15
+ <list type="bullet">
16
+ <item>{0} = expected value</item>
17
+ <item>{1} = actual value</item>
18
+ <item>{2} = the reason for the expectation</item>
19
+ </list>
20
+ </param>
21
+ <param name="expected">The expected value, or <c>null</c> if there is no explicit expected value</param>
22
+ <param name="actual">The actual value, or <c>null</c> if there is no explicit actual value</param>
23
+ <param name="reason">Should describe the reason for the expectation</param>
24
+ <param name="reasonParameters">Optional parameters for the <paramref name="reason"/></param>
25
+ <example>
26
+ <code>
27
+ VerifyThat(() =&gt; value == 0,
28
+ "Expected value to be &lt;{0}&gt;{2}, but found &lt;{1}&gt;",
29
+ expected,
30
+ reason,
31
+ reasonParameters);
32
+ </code>
33
+ </example>
34
+ <exception cref="T:FluentAssertions.SpecificationMismatchException">when an exception is thrown.</exception>
35
+ </member>
36
+ <member name="M:FluentAssertions.AssertionsBase`1.VerifyThat(System.Action,System.String,System.Object,System.Object,System.String,System.Object[])">
37
+ <summary>
38
+ Asserts that the supplied <paramref name="action"/> does not throw any <see cref="T:System.Exception"/>.
39
+ </summary>
40
+ <param name="action">The <see cref="T:System.Action"/> to perform</param>
41
+ <param name="failureMessage">
42
+ The message that will be used in the <see cref="T:FluentAssertions.SpecificationMismatchException"/>. This should describe what
43
+ was expected and why. This message can contain the following placeholder:<br/>
44
+ <list type="bullet">
45
+ <item>{2} = the reason for the expectation</item>
46
+ </list>
47
+ </param>
48
+ <param name="expected">The expected value, or <c>null</c> if there is no explicit expected value</param>
49
+ <param name="actual">The actual value, or <c>null</c> if there is no explicit actual value</param>
50
+ <param name="reason">Should describe the reason for the expectation</param>
51
+ <param name="reasonParameters">Optional parameters for the <paramref name="reason"/></param>
52
+ <example>
53
+ <code>
54
+ VerifyThat(() =&gt; value == 0,
55
+ "Expected value to be positive{2}, but found &lt;{1}&gt;",
56
+ reason,
57
+ reasonParameters);
58
+ </code>
59
+ </example>
60
+ <exception cref="T:FluentAssertions.SpecificationMismatchException">when an exception is thrown.</exception>
61
+ </member>
62
+ <member name="M:FluentAssertions.AssertionsBase`1.VerifyThat(System.Boolean,System.String,System.Object,System.Object,System.String,System.Object[])">
63
+ <summary>
64
+ Asserts that the supplied <paramref name="condition"/> is <c>true</c>.
65
+ </summary>
66
+ <param name="condition">The condition to assert</param>
67
+ <param name="failureMessage">
68
+ The message that will be used in the <see cref="T:FluentAssertions.SpecificationMismatchException"/>. This should describe what
69
+ was expected and why. This message should contain the following 3 placeholders:<br/>
70
+ <list type="bullet">
71
+ <item>{0} = expected value</item>
72
+ <item>{1} = actual value</item>
73
+ <item>{2} = the reason for the expectation</item>
74
+ </list>
75
+ </param>
76
+ <param name="expected">The expected value</param>
77
+ <param name="actual">The actual value</param>
78
+ <param name="reason">Should describe the reason for the expectation</param>
79
+ <param name="reasonParameters">Optional parameters for the <paramref name="reason"/></param>
80
+ <example>
81
+ <code>
82
+ VerifyThat(() =&gt; value == 0,
83
+ "Expected value to be &lt;{0}&gt;{2}, but found &lt;{1}&gt;",
84
+ expected,
85
+ reason,
86
+ reasonParameters);
87
+ </code>
88
+ </example>
89
+ <exception cref="T:FluentAssertions.SpecificationMismatchException">when the condition is <c>false</c>.</exception>
90
+ </member>
91
+ <member name="M:FluentAssertions.AssertionsBase`1.Format(System.Object)">
92
+ <summary>
93
+ If the value is a collection, returns it as a comma-separated string.
94
+ </summary>
95
+ </member>
96
+ <member name="M:FluentAssertions.Assertions`2.Match(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
97
+ <summary>
98
+ Asserts that the <paramref name="predicate"/> is statisfied.
99
+ </summary>
100
+ <param name="predicate">The predicate which must be satisfied by the <typeparamref name="TSubject"/>.</param>
101
+ <returns>An <see cref="!:AndConstraint"/> which can be used to chain assertions.</returns>
102
+ </member>
103
+ <member name="M:FluentAssertions.Assertions`2.Match(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.String,System.Object[])">
104
+ <summary>
105
+ Asserts that the <paramref name="predicate"/> is satisfied.
106
+ </summary>
107
+ <param name="predicate">The predicate which must be statisfied by the <typeparamref name="TSubject"/>.</param>
108
+ <param name="reason">The reason why the predicate should be satisfied.</param>
109
+ <param name="reasonParameters">The parameters used when formatting the <paramref name="reason"/>.</param>
110
+ <returns>An <see cref="!:AndConstraint"/> which can be used to chain assertions.</returns>
111
+ </member>
112
+ <member name="M:FluentAssertions.Assertions`2.Match``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
113
+ <summary>
114
+ Asserts that the <paramref name="predicate"/> is satisfied.
115
+ </summary>
116
+ <param name="predicate">The predicate which must be statisfied by the <typeparamref name="TSubject"/>.</param>
117
+ <returns>An <see cref="!:AndConstraint"/> which can be used to chain assertions.</returns>
118
+ </member>
119
+ <member name="M:FluentAssertions.Assertions`2.Match``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.String,System.Object[])">
120
+ <summary>
121
+ Asserts that the <paramref name="predicate"/> is satisfied.
122
+ </summary>
123
+ <param name="predicate">The predicate which must be statisfied by the <typeparamref name="TSubject"/>.</param>
124
+ <param name="reason">The reason why the predicate should be satisfied.</param>
125
+ <param name="reasonParameters">The parameters used when formatting the <paramref name="reason"/>.</param>
126
+ <returns>An <see cref="!:AndConstraint"/> which can be used to chain assertions.</returns>
127
+ </member>
128
+ <member name="M:FluentAssertions.ExceptionAssertions`1.WithMessage(System.String)">
129
+ <summary>
130
+ Asserts that the thrown exception has a message matching the <paramref name="expectedMessage"/>.
131
+ </summary>
132
+ <param name="expectedMessage">The expected message of the exception.</param>
133
+ <returns>An <see cref="!:AndConstraint"/> which can be used to chain assertions.</returns>
134
+ </member>
135
+ <member name="M:FluentAssertions.ExceptionAssertions`1.WithMessage(System.String,System.String,System.Object[])">
136
+ <summary>
137
+ Asserts that the thrown exception has a message matching the <paramref name="expectedMessage"/>.
138
+ </summary>
139
+ <param name="expectedMessage">The expected message of the exception.</param>
140
+ <param name="reason">
141
+ The reason why the message of the exception should match the <paramref name="expectedMessage"/>.
142
+ </param>
143
+ <param name="reasonParameters">The parameters used when formatting the <paramref name="reason"/>.</param>
144
+ <returns>An <see cref="!:AndConstraint"/> which can be used to chain assertions.</returns>
145
+ </member>
146
+ <member name="M:FluentAssertions.ExceptionAssertions`1.WithInnerException``1">
147
+ <summary>
148
+ Asserts that the thrown exception contains an inner exception of type <typeparamref name="TInnerException"/>.
149
+ </summary>
150
+ <typeparam name="TInnerException">The expected type of the inner exception.</typeparam>
151
+ <returns>An <see cref="!:AndConstraint"/> which can be used to chain assertions.</returns>
152
+ </member>
153
+ <member name="M:FluentAssertions.ExceptionAssertions`1.WithInnerException``1(System.String,System.Object[])">
154
+ <summary>
155
+ Asserts that the thrown exception contains an inner exception of type <typeparamref name="TInnerException"/>.
156
+ </summary>
157
+ <typeparam name="TInnerException">The expected type of the inner exception.</typeparam>
158
+ <param name="reason">The reason why the inner exception should be of the supplied type.</param>
159
+ <param name="reasonParameters">The parameters used when formatting the <paramref name="reason"/>.</param>
160
+ <returns>An <see cref="!:AndConstraint"/> which can be used to chain assertions.</returns>
161
+ </member>
162
+ <member name="M:FluentAssertions.ExceptionAssertions`1.WithInnerMessage(System.String)">
163
+ <summary>
164
+ Asserts that the thrown exception contains an inner exception with the <paramref name="expectedInnerMessage"/>.
165
+ </summary>
166
+ <param name="expectedInnerMessage">The expected message of the inner exception.</param>
167
+ <returns>An <see cref="!:AndConstraint"/> which can be used to chain assertions.</returns>
168
+ </member>
169
+ <member name="M:FluentAssertions.ExceptionAssertions`1.WithInnerMessage(System.String,System.String,System.Object[])">
170
+ <summary>
171
+ Asserts that the thrown exception contains an inner exception with the <paramref name="expectedInnerMessage"/>.
172
+ </summary>
173
+ <param name="expectedInnerMessage">The expected message of the inner exception.</param>
174
+ <param name="reason">
175
+ The reason why the message of the inner exception should match <paramref name="expectedInnerMessage"/>.
176
+ </param>
177
+ <param name="reasonParameters">The parameters used when formatting the <paramref name="reason"/>.</param>
178
+ <returns>An <see cref="!:AndConstraint"/> which can be used to chain assertions.</returns>
179
+ </member>
180
+ <member name="P:FluentAssertions.ExceptionAssertions`1.And">
181
+ <summary>
182
+ Gets the exception object of the exception thrown.
183
+ </summary>
184
+ </member>
185
+ <member name="M:FluentAssertions.CollectionAssertions`2.HaveCount(System.Linq.Expressions.Expression{System.Func{System.Int32,System.Boolean}})">
186
+ <summary>
187
+ Asserts that the number of items in the collection matches a condition stated by a predicate.
188
+ </summary>
189
+ </member>
190
+ <member name="M:FluentAssertions.CollectionAssertions`2.HaveCount(System.Linq.Expressions.Expression{System.Func{System.Int32,System.Boolean}},System.String,System.Object[])">
191
+ <summary>
192
+ Asserts that the number of items in the collection matches a condition stated by a predicate.
193
+ </summary>
194
+ </member>
195
+ <member name="M:FluentAssertions.CollectionAssertions`2.Equal(System.Collections.IEnumerable)">
196
+ <summary>
197
+ Expects the current collection to contain all the same elements in the same order as the collection identified by
198
+ <param name="expected"/>. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>.
199
+ </summary>
200
+ </member>
201
+ <member name="M:FluentAssertions.CollectionAssertions`2.Equal(System.Object[])">
202
+ <summary>
203
+ Expects the current collection to contain all the same elements in the same order as the collection identified by
204
+ <param name="expected"/>. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>.
205
+ </summary>
206
+ </member>
207
+ <member name="M:FluentAssertions.CollectionAssertions`2.Equal(System.Collections.IEnumerable,System.String,System.Object[])">
208
+ <summary>
209
+ Expects the current collection to contain all the same elements in the same order as the collection identified by
210
+ <param name="expected"/>. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>.
211
+ </summary>
212
+ </member>
213
+ <member name="M:FluentAssertions.CollectionAssertions`2.NotEqual(System.Collections.IEnumerable)">
214
+ <summary>
215
+ Expects the current collection not to contain all the same elements in the same order as the collection identified by
216
+ <param name="expected"/>. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>.
217
+ </summary>
218
+ </member>
219
+ <member name="M:FluentAssertions.CollectionAssertions`2.NotEqual(System.Collections.IEnumerable,System.String,System.Object[])">
220
+ <summary>
221
+ Expects the current collection not to contain all the same elements in the same order as the collection identified by
222
+ <param name="expected"/>. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>.
223
+ </summary>
224
+ </member>
225
+ <member name="M:FluentAssertions.CollectionAssertions`2.BeEquivalentTo(System.Collections.IEnumerable)">
226
+ <summary>
227
+ Expects the current collection to contain all elements of the collection identified by <param name="expected"/>,
228
+ regardless of the order. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>.
229
+ </summary>
230
+ </member>
231
+ <member name="M:FluentAssertions.CollectionAssertions`2.BeEquivalentTo(System.Object[])">
232
+ <summary>
233
+ Expects the current collection to contain all elements of the collection identified by <param name="expected"/>,
234
+ regardless of the order. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>.
235
+ </summary>
236
+ </member>
237
+ <member name="M:FluentAssertions.CollectionAssertions`2.BeEquivalentTo(System.Collections.IEnumerable,System.String,System.Object[])">
238
+ <summary>
239
+ Expects the current collection to contain all elements of the collection identified by <param name="expected"/>,
240
+ regardless of the order. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>.
241
+ </summary>
242
+ </member>
243
+ <member name="M:FluentAssertions.CollectionAssertions`2.NotBeEquivalentTo(System.Collections.IEnumerable,System.String,System.Object[])">
244
+ <summary>
245
+ Expects the current collection not to contain all elements of the collection identified by <param name="expected"/>,
246
+ regardless of the order. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>.
247
+ </summary>
248
+ </member>
249
+ <member name="M:FluentAssertions.CollectionAssertions`2.Contain(System.Collections.IEnumerable)">
250
+ <summary>
251
+ Expects the current collection to contain the specified elements in any order. Elements are compared
252
+ using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
253
+ </summary>
254
+ </member>
255
+ <member name="M:FluentAssertions.CollectionAssertions`2.Contain(System.Collections.IEnumerable,System.String,System.Object[])">
256
+ <summary>
257
+ Expects the current collection to contain the specified elements in any order. Elements are compared
258
+ using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
259
+ </summary>
260
+ </member>
261
+ <member name="M:FluentAssertions.CollectionAssertions`2.ContainInOrder(System.Collections.IEnumerable)">
262
+ <summary>
263
+ Expects the current collection to contain the specified elements in the exact same order. Elements are compared
264
+ using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
265
+ </summary>
266
+ </member>
267
+ <member name="M:FluentAssertions.CollectionAssertions`2.ContainInOrder(System.Collections.IEnumerable,System.String,System.Object[])">
268
+ <summary>
269
+ Expects the current collection to contain the specified elements in the exact same order. Elements are compared
270
+ using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
271
+ </summary>
272
+ </member>
273
+ <member name="M:FluentAssertions.CollectionAssertions`2.HaveSameCount(System.Collections.IEnumerable)">
274
+ <summary>
275
+ Assert that the current collection has the same number of elements as <paramref name="otherCollection"/>.
276
+ </summary>
277
+ </member>
278
+ <member name="M:FluentAssertions.CollectionAssertions`2.HaveSameCount(System.Collections.IEnumerable,System.String,System.Object[])">
279
+ <summary>
280
+ Assert that the current collection has the same number of elements as <paramref name="otherCollection"/>.
281
+ </summary>
282
+ </member>
283
+ <member name="M:FluentAssertions.CollectionAssertions`2.BeNull">
284
+ <summary>
285
+ Asserts that the current collection has not been initialized yet with an actual collection.
286
+ </summary>
287
+ </member>
288
+ <member name="M:FluentAssertions.CollectionAssertions`2.BeNull(System.String,System.Object[])">
289
+ <summary>
290
+ Asserts that the current collection has not been initialized yet with an actual collection.
291
+ </summary>
292
+ </member>
293
+ <member name="M:FluentAssertions.CollectionAssertions`2.NotBeNull">
294
+ <summary>
295
+ Asserts that the current collection has been initialized with an actual collection.
296
+ </summary>
297
+ </member>
298
+ <member name="M:FluentAssertions.CollectionAssertions`2.NotBeNull(System.String,System.Object[])">
299
+ <summary>
300
+ Asserts that the current collection has been initialized with an actual collection.
301
+ </summary>
302
+ </member>
303
+ <member name="M:FluentAssertions.CollectionAssertions`2.NotBeEquivalentTo(System.Collections.IEnumerable)">
304
+ <summary>
305
+ Expects the current collection not to contain all elements of the collection identified by <param name="expected"/>,
306
+ regardless of the order. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>.
307
+ </summary>
308
+ </member>
309
+ <member name="T:FluentAssertions.FluentAssertionExtensions">
310
+ <summary>
311
+ Contains extension methods for custom assertions in unit tests.
312
+ </summary>
313
+ </member>
314
+ <member name="M:FluentAssertions.FluentAssertionExtensions.Enumerating(System.Func{System.Collections.IEnumerable})">
315
+ <summary>
316
+ Forces enumerating a collection. Should be used to assert that a method that uses the
317
+ <c>yield</c> keyword throws a particular exception.
318
+ </summary>
319
+ </member>
320
+ <member name="M:FluentAssertions.DateTimeAssertions.BeMoreThan(System.TimeSpan)">
321
+ <summary>
322
+ The amount of time that a <see cref="T:System.DateTime"/> should exceed compared to another <see cref="T:System.DateTime"/>.
323
+ </summary>
324
+ </member>
325
+ <member name="M:FluentAssertions.DateTimeAssertions.BeAtLeast(System.TimeSpan)">
326
+ <summary>
327
+ The amount of time that a <see cref="T:System.DateTime"/> should be equal or exceed compared to another <see cref="T:System.DateTime"/>.
328
+ </summary>
329
+ </member>
330
+ <member name="M:FluentAssertions.DateTimeAssertions.BeExactly(System.TimeSpan)">
331
+ <summary>
332
+ The amount of time that a <see cref="T:System.DateTime"/> should differ exactly compared to another <see cref="T:System.DateTime"/>.
333
+ </summary>
334
+ </member>
335
+ <member name="M:FluentAssertions.DateTimeAssertions.BeWithin(System.TimeSpan)">
336
+ <summary>
337
+ The maximum amount of time that a <see cref="T:System.DateTime"/> should differ compared to another <see cref="T:System.DateTime"/>.
338
+ </summary>
339
+ </member>
340
+ <member name="M:FluentAssertions.DateTimeAssertions.BeLessThan(System.TimeSpan)">
341
+ <summary>
342
+ The amount of time that a <see cref="T:System.DateTime"/> should be within another <see cref="T:System.DateTime"/>.
343
+ </summary>
344
+ </member>
345
+ <member name="T:FluentAssertions.TimeSpanAssertions">
346
+ <summary>
347
+ Provides methods for asserting that two <see cref="T:System.DateTime"/> objects differ in certain ways.
348
+ </summary>
349
+ </member>
350
+ <member name="M:FluentAssertions.TimeSpanAssertions.Before(System.DateTime)">
351
+ <summary>
352
+ Asserts that a <see cref="T:System.DateTime"/> occurs a specified amount of time before another <see cref="T:System.DateTime"/>.
353
+ </summary>
354
+ <param name="target">
355
+ The <see cref="T:System.DateTime"/> to compare the subject with.
356
+ </param>
357
+ </member>
358
+ <member name="M:FluentAssertions.TimeSpanAssertions.Before(System.DateTime,System.String,System.Object[])">
359
+ <summary>
360
+ Asserts that a <see cref="T:System.DateTime"/> occurs a specified amount of time before another <see cref="T:System.DateTime"/>.
361
+ </summary>
362
+ <param name="target">
363
+ The <see cref="T:System.DateTime"/> to compare the subject with.
364
+ </param>
365
+ <param name="reason">
366
+ A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
367
+ start with the word <i>because</i>, it is prepended to the message.
368
+ </param>
369
+ <param name="reasonParameters">
370
+ Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
371
+ </param>
372
+ </member>
373
+ <member name="M:FluentAssertions.TimeSpanAssertions.After(System.DateTime)">
374
+ <summary>
375
+ Asserts that a <see cref="T:System.DateTime"/> occurs a specified amount of time after another <see cref="T:System.DateTime"/>.
376
+ </summary>
377
+ <param name="target">
378
+ The <see cref="T:System.DateTime"/> to compare the subject with.
379
+ </param>
380
+ </member>
381
+ <member name="M:FluentAssertions.TimeSpanAssertions.After(System.DateTime,System.String,System.Object[])">
382
+ <summary>
383
+ Asserts that a <see cref="T:System.DateTime"/> occurs a specified amount of time after another <see cref="T:System.DateTime"/>.
384
+ </summary>
385
+ <param name="target">
386
+ The <see cref="T:System.DateTime"/> to compare the subject with.
387
+ </param>
388
+ <param name="reason">
389
+ A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
390
+ start with the word <i>because</i>, it is prepended to the message.
391
+ </param>
392
+ <param name="reasonParameters">
393
+ Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
394
+ </param>
395
+ </member>
396
+ <member name="T:FluentAssertions.TimeSpanAssertions.TimeSpanPredicate">
397
+ <summary>
398
+ Provides the logic and the display text for a <see cref="T:FluentAssertions.TimeSpanCondition"/>.
399
+ </summary>
400
+ </member>
401
+ <member name="M:FluentAssertions.StringAssertions.#ctor(System.String)">
402
+ <summary>
403
+ Initializes a new instance of the <see cref="T:System.Object"/> class.
404
+ </summary>
405
+ </member>
406
+ <member name="M:FluentAssertions.StringAssertions.BeEquivalentTo(System.String)">
407
+ <summary>
408
+ Case insensitive comparison
409
+ </summary>
410
+ </member>
411
+ <member name="M:FluentAssertions.StringAssertions.BeEquivalentTo(System.String,System.String,System.Object[])">
412
+ <summary>
413
+ Case insensitive comparison
414
+ </summary>
415
+ </member>
416
+ <member name="M:FluentAssertions.StringAssertions.NotBeNullOrEmpty">
417
+ <summary>
418
+ Ensures that a string is neither <c>null</c> or empty.
419
+ </summary>
420
+ </member>
421
+ <member name="M:FluentAssertions.StringAssertions.NotBeNullOrEmpty(System.String,System.Object[])">
422
+ <summary>
423
+ Ensures that a string is neither <c>null</c> or empty.
424
+ </summary>
425
+ <param name="reason">
426
+ A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
427
+ start with the word <i>because</i>, it is prepended to the message.
428
+ </param>
429
+ <param name="reasonParameters">
430
+ Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
431
+ </param>
432
+ </member>
433
+ <member name="M:FluentAssertions.StringAssertions.BeNullOrEmpty">
434
+ <summary>
435
+ Ensures that a string is neither <c>null</c> or empty.
436
+ </summary>
437
+ </member>
438
+ <member name="M:FluentAssertions.StringAssertions.BeNullOrEmpty(System.String,System.Object[])">
439
+ <summary>
440
+ Ensures that a string is either <c>null</c> or empty.
441
+ </summary>
442
+ <param name="reason">
443
+ A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
444
+ start with the word <i>because</i>, it is prepended to the message.
445
+ </param>
446
+ <param name="reasonParameters">
447
+ Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
448
+ </param>
449
+ </member>
450
+ <member name="M:FluentAssertions.AndConstraint`1.#ctor(`0)">
451
+ <summary>
452
+ Initializes a new instance of the <see cref="T:System.Object"/> class.
453
+ </summary>
454
+ </member>
455
+ <member name="M:FluentAssertions.GenericCollectionAssertions`1.Contain(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
456
+ <summary>
457
+ Asserts that the collection contains at least one item that matches the predicate.
458
+ </summary>
459
+ </member>
460
+ <member name="M:FluentAssertions.GenericCollectionAssertions`1.Contain(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.String,System.Object[])">
461
+ <summary>
462
+ Asserts that the collection contains at least one item that matches the predicate.
463
+ </summary>
464
+ </member>
465
+ <member name="M:FluentAssertions.GenericCollectionAssertions`1.NotContain(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
466
+ <summary>
467
+ Asserts that the collection does not contain any items that match the predicate.
468
+ </summary>
469
+ </member>
470
+ <member name="M:FluentAssertions.GenericCollectionAssertions`1.NotContain(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.String,System.Object[])">
471
+ <summary>
472
+ Asserts that the collection does not contain any items that match the predicate.
473
+ </summary>
474
+ </member>
475
+ <member name="M:FluentAssertions.InvokingAssertions`1.ShouldThrow``1">
476
+ <summary>
477
+ Asserts that an exception is thrown of type <typeparamref name="TException"/>.
478
+ </summary>
479
+ <typeparam name="TException">The expected type of the exception.</typeparam>
480
+ <returns>An <see cref="!:AndConstraint"/> which can be used to chain assertions.</returns>
481
+ </member>
482
+ <member name="M:FluentAssertions.InvokingAssertions`1.ShouldThrow``1(System.String,System.Object[])">
483
+ <summary>
484
+ Asserts that an exception is thrown of type <typeparamref name="TException"/>.
485
+ </summary>
486
+ <typeparam name="TException">The expected type of the exception.</typeparam>
487
+ <param name="reason">The reason why the exception should be of type <typeparamref name="TException"/>.</param>
488
+ <param name="reasonParameters">The parameters used when formatting the <paramref name="reason"/>.</param>
489
+ <returns>An <see cref="!:AndConstraint"/> which can be used to chain assertions.</returns>
490
+ </member>
491
+ <member name="M:FluentAssertions.PropertyAssertions`1.AllProperties">
492
+ <summary>
493
+ Includes all properties of <typeparamref name="T"/> when comparing the subject with another object using <see cref="M:FluentAssertions.PropertyAssertions`1.EqualTo(System.Object)"/>.
494
+ </summary>
495
+ </member>
496
+ <member name="M:FluentAssertions.PropertyAssertions`1.AllPropertiesBut(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}}[])">
497
+ <summary>
498
+ Includes all properties of <typeparamref name="T"/> when comparing the subject with another object using <see cref="M:FluentAssertions.PropertyAssertions`1.EqualTo(System.Object)"/>,
499
+ except those specified using a property expression.
500
+ </summary>
501
+ </member>
502
+ <member name="M:FluentAssertions.PropertyAssertions`1.Properties(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}}[])">
503
+ <summary>
504
+ Includes only those properties of <typeparamref name="T"/> when comparing the subject with another object using <see cref="M:FluentAssertions.PropertyAssertions`1.EqualTo(System.Object)"/>
505
+ that were specified using a property expression.
506
+ </summary>
507
+ </member>
508
+ <member name="M:FluentAssertions.PropertyAssertions`1.EqualTo(System.Object)">
509
+ <summary>
510
+ Verifies that the previously selected properties of <typeparamref name="T"/> have the same value as the equally named
511
+ properties of <paramref name="comparee"/>.
512
+ </summary>
513
+ <remarks>
514
+ Property values are considered equal if, after converting them to the requested type, calling <see cref="!:T.Equals(object)"/>
515
+ returns <c>true</c>.
516
+ </remarks>
517
+ </member>
518
+ <member name="M:FluentAssertions.PropertyAssertions`1.EqualTo(System.Object,System.String,System.Object[])">
519
+ <summary>
520
+ Verifies that the previously selected properties of <typeparamref name="T"/> have the same value as the equally named
521
+ properties of <paramref name="comparee"/>.
522
+ </summary>
523
+ <remarks>
524
+ Property values are considered equal if, after converting them to the requested type, calling <see cref="!:T.Equals(object)"/>
525
+ returns <c>true</c>.
526
+ </remarks>
527
+ </member>
528
+ <member name="M:FluentAssertions.ObjectAssertions.BeAssignableTo``1">
529
+ <summary>
530
+ Asserts that the object is assignable to a variable of type <typeparamref name="T"/>.
531
+ </summary>
532
+ <typeparam name="T">The type to which the object should be assignable.</typeparam>
533
+ <returns>An <see cref="T:FluentAssertions.AndConstraint`1"/> which can be used to chain assertions.</returns>
534
+ </member>
535
+ <member name="M:FluentAssertions.ObjectAssertions.BeAssignableTo``1(System.String,System.Object[])">
536
+ <summary>
537
+ Asserts that the object is assignable to a variable of type <typeparamref name="T"/>.
538
+ </summary>
539
+ <typeparam name="T">The type to which the object should be assignable.</typeparam>
540
+ <param name="reason">The reason why the object should be assignable to the type.</param>
541
+ <param name="reasonParameters">The parameters used when formatting the <paramref name="reason"/>.</param>
542
+ <returns>An <see cref="T:FluentAssertions.AndConstraint`1"/> which can be used to chain assertions.</returns>
543
+ </member>
544
+ </members>
545
+ </doc>