Mercurial > silverbladetech
comparison Stocks/packages/FluentAssertions.1.7.0/Lib/sl40/FluentAssertions.Silverlight.xml @ 0:e5d46bb6cdb0
Initial commit
author | adminSH stevenhollidge@hotmail.com |
---|---|
date | Mon, 20 Feb 2012 13:52:35 +0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e5d46bb6cdb0 |
---|---|
1 <?xml version="1.0"?> | |
2 <doc> | |
3 <assembly> | |
4 <name>FluentAssertions.Silverlight</name> | |
5 </assembly> | |
6 <members> | |
7 <member name="M:FluentAssertions.AndConstraint`1.#ctor(`0)"> | |
8 <summary> | |
9 Initializes a new instance of the <see cref="T:System.Object"/> class. | |
10 </summary> | |
11 </member> | |
12 <member name="T:FluentAssertions.AssertionExtensions"> | |
13 <summary> | |
14 Contains extension methods for custom assertions in unit tests. | |
15 </summary> | |
16 </member> | |
17 <member name="M:FluentAssertions.AssertionExtensions.Invoking``1(``0,System.Action{``0})"> | |
18 <summary> | |
19 Invokes the specified action on an subject so that you can chain it with any of the ShouldThrow or ShouldNotThrow | |
20 overloads. | |
21 </summary> | |
22 </member> | |
23 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Xml.Linq.XDocument)"> | |
24 <summary> | |
25 Returns an <see cref="T:FluentAssertions.Assertions.XDocumentAssertions"/> object that can be used to assert the | |
26 current <see cref="T:System.Xml.Linq.XElement"/>. | |
27 </summary> | |
28 </member> | |
29 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Xml.Linq.XElement)"> | |
30 <summary> | |
31 Returns an <see cref="T:FluentAssertions.Assertions.XElementAssertions"/> object that can be used to assert the | |
32 current <see cref="T:System.Xml.Linq.XElement"/>. | |
33 </summary> | |
34 </member> | |
35 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Xml.Linq.XAttribute)"> | |
36 <summary> | |
37 Returns an <see cref="T:FluentAssertions.Assertions.XAttributeAssertions"/> object that can be used to assert the | |
38 current <see cref="T:System.Xml.Linq.XAttribute"/>. | |
39 </summary> | |
40 </member> | |
41 <member name="M:FluentAssertions.AssertionExtensions.ShouldThrow``1(System.Action)"> | |
42 <summary> | |
43 Asserts that the <paramref name="action"/> throws an exception. | |
44 </summary> | |
45 <typeparam name="TException"> | |
46 The type of the exception it should throw. | |
47 </typeparam> | |
48 <returns> | |
49 Returns an object that allows asserting additional members of the thrown exception. | |
50 </returns> | |
51 </member> | |
52 <member name="M:FluentAssertions.AssertionExtensions.ShouldThrow``1(System.Action,System.String,System.Object[])"> | |
53 <summary> | |
54 Asserts that the <paramref name="action"/> throws an exception. | |
55 </summary> | |
56 <param name="action">A reference to the method or property.</param> | |
57 <typeparam name="TException"> | |
58 The type of the exception it should throw. | |
59 </typeparam> | |
60 <param name="reason"> | |
61 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
62 start with the word <i>because</i>, it is prepended to the message. | |
63 </param> | |
64 <param name="reasonArgs"> | |
65 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
66 </param> | |
67 <returns> | |
68 Returns an object that allows asserting additional members of the thrown exception. | |
69 </returns> | |
70 </member> | |
71 <member name="M:FluentAssertions.AssertionExtensions.ShouldNotThrow``1(System.Action)"> | |
72 <summary> | |
73 Asserts that the <paramref name="action"/> does not throw a particular exception. | |
74 </summary> | |
75 <typeparam name="TException"> | |
76 The type of the exception it should not throw. Any other exceptions are ignored and will satisfy the assertion. | |
77 </typeparam> | |
78 </member> | |
79 <member name="M:FluentAssertions.AssertionExtensions.ShouldNotThrow``1(System.Action,System.String,System.Object[])"> | |
80 <summary> | |
81 Asserts that the <paramref name="action"/> does not throw a particular exception. | |
82 </summary> | |
83 <param name="action">The current method or property.</param> | |
84 <typeparam name="TException"> | |
85 The type of the exception it should not throw. Any other exceptions are ignored and will satisfy the assertion. | |
86 </typeparam> | |
87 <param name="reason"> | |
88 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
89 start with the word <i>because</i>, it is prepended to the message. | |
90 </param> | |
91 <param name="reasonArgs"> | |
92 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
93 </param> | |
94 </member> | |
95 <member name="M:FluentAssertions.AssertionExtensions.ShouldNotThrow(System.Action)"> | |
96 <summary> | |
97 Asserts that the <paramref name="action"/> does not throw any exception at all. | |
98 </summary> | |
99 </member> | |
100 <member name="M:FluentAssertions.AssertionExtensions.ShouldNotThrow(System.Action,System.String,System.Object[])"> | |
101 <summary> | |
102 Asserts that the <paramref name="action"/> does not throw any exception at all. | |
103 </summary> | |
104 <param name="action">The current method or property.</param> | |
105 <param name="reason"> | |
106 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
107 start with the word <i>because</i>, it is prepended to the message. | |
108 </param> | |
109 <param name="reasonArgs"> | |
110 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
111 </param> | |
112 </member> | |
113 <member name="M:FluentAssertions.AssertionExtensions.Enumerating(System.Func{System.Collections.IEnumerable})"> | |
114 <summary> | |
115 Forces enumerating a collection. Should be used to assert that a method that uses the | |
116 <c>yield</c> keyword throws a particular exception. | |
117 </summary> | |
118 </member> | |
119 <member name="M:FluentAssertions.AssertionExtensions.Enumerating``1(System.Func{System.Collections.Generic.IEnumerable{``0}})"> | |
120 <summary> | |
121 Forces enumerating a collection. Should be used to assert that a method that uses the | |
122 <c>yield</c> keyword throws a particular exception. | |
123 </summary> | |
124 </member> | |
125 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Object)"> | |
126 <summary> | |
127 Returns an <see cref="T:FluentAssertions.Assertions.ObjectAssertions"/> object that can be used to assert the | |
128 current <see cref="T:System.Object"/>. | |
129 </summary> | |
130 </member> | |
131 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Boolean)"> | |
132 <summary> | |
133 Returns an <see cref="T:FluentAssertions.Assertions.BooleanAssertions"/> object that can be used to assert the | |
134 current <see cref="T:System.Boolean"/>. | |
135 </summary> | |
136 </member> | |
137 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Nullable{System.Boolean})"> | |
138 <summary> | |
139 Returns an <see cref="T:FluentAssertions.Assertions.NullableBooleanAssertions"/> object that can be used to assert the | |
140 current nullable <see cref="T:System.Boolean"/>. | |
141 </summary> | |
142 </member> | |
143 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Guid)"> | |
144 <summary> | |
145 Returns an <see cref="T:FluentAssertions.Assertions.GuidAssertions"/> object that can be used to assert the | |
146 current <see cref="T:System.Guid"/>. | |
147 </summary> | |
148 </member> | |
149 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Nullable{System.Guid})"> | |
150 <summary> | |
151 Returns an <see cref="T:FluentAssertions.Assertions.NullableGuidAssertions"/> object that can be used to assert the | |
152 current nullable <see cref="T:System.Guid"/>. | |
153 </summary> | |
154 </member> | |
155 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Collections.IEnumerable)"> | |
156 <summary> | |
157 Returns an <see cref="T:FluentAssertions.Assertions.NonGenericCollectionAssertions"/> object that can be used to assert the | |
158 current <see cref="T:System.Collections.IEnumerable"/>. | |
159 </summary> | |
160 </member> | |
161 <member name="M:FluentAssertions.AssertionExtensions.Should``1(System.Collections.Generic.IEnumerable{``0})"> | |
162 <summary> | |
163 Returns an <see cref="T:FluentAssertions.Assertions.GenericCollectionAssertions`1"/> object that can be used to assert the | |
164 current <see cref="T:System.Collections.Generic.IEnumerable`1"/>. | |
165 </summary> | |
166 </member> | |
167 <member name="M:FluentAssertions.AssertionExtensions.Should``2(System.Collections.Generic.IDictionary{``0,``1})"> | |
168 <summary> | |
169 Returns an <see cref="T:FluentAssertions.Assertions.GenericDictionaryAssertions`2"/> object that can be used to assert the | |
170 current <see cref="T:System.Collections.Generic.IDictionary`2"/>. | |
171 </summary> | |
172 </member> | |
173 <member name="M:FluentAssertions.AssertionExtensions.Should(System.DateTime)"> | |
174 <summary> | |
175 Returns an <see cref="T:FluentAssertions.Assertions.DateTimeAssertions"/> object that can be used to assert the | |
176 current <see cref="T:System.DateTime"/>. | |
177 </summary> | |
178 </member> | |
179 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Nullable{System.DateTime})"> | |
180 <summary> | |
181 Returns an <see cref="T:FluentAssertions.Assertions.NullableDateTimeAssertions"/> object that can be used to assert the | |
182 current nullable <see cref="T:System.DateTime"/>. | |
183 </summary> | |
184 </member> | |
185 <member name="M:FluentAssertions.AssertionExtensions.Should``1(System.IComparable{``0})"> | |
186 <summary> | |
187 Returns an <see cref="T:FluentAssertions.Assertions.ComparableTypeAssertions`1"/> object that can be used to assert the | |
188 current <see cref="T:System.IComparable`1"/>. | |
189 </summary> | |
190 </member> | |
191 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Int32)"> | |
192 <summary> | |
193 Returns an <see cref="T:FluentAssertions.Assertions.IntegralAssertions`1"/> object that can be used to assert the | |
194 current <see cref="T:System.Int32"/>. | |
195 </summary> | |
196 </member> | |
197 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Nullable{System.Int32})"> | |
198 <summary> | |
199 Returns an <see cref="T:FluentAssertions.Assertions.IntegralAssertions`1"/> object that can be used to assert the | |
200 current nullable <see cref="T:System.Int32"/>. | |
201 </summary> | |
202 </member> | |
203 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Byte)"> | |
204 <summary> | |
205 Returns an <see cref="T:FluentAssertions.Assertions.IntegralAssertions`1"/> object that can be used to assert the | |
206 current <see cref="T:System.Byte"/>. | |
207 </summary> | |
208 </member> | |
209 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Nullable{System.Byte})"> | |
210 <summary> | |
211 Returns an <see cref="T:FluentAssertions.Assertions.IntegralAssertions`1"/> object that can be used to assert the | |
212 current nullable <see cref="T:System.Byte"/>. | |
213 </summary> | |
214 </member> | |
215 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Int16)"> | |
216 <summary> | |
217 Returns an <see cref="T:FluentAssertions.Assertions.IntegralAssertions`1"/> object that can be used to assert the | |
218 current <see cref="T:System.Int16"/>. | |
219 </summary> | |
220 </member> | |
221 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Nullable{System.Int16})"> | |
222 <summary> | |
223 Returns an <see cref="T:FluentAssertions.Assertions.IntegralAssertions`1"/> object that can be used to assert the | |
224 current nullable <see cref="T:System.Int16"/>. | |
225 </summary> | |
226 </member> | |
227 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Int64)"> | |
228 <summary> | |
229 Returns an <see cref="T:FluentAssertions.Assertions.IntegralAssertions`1"/> object that can be used to assert the | |
230 current <see cref="T:System.Int64"/>. | |
231 </summary> | |
232 </member> | |
233 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Nullable{System.Int64})"> | |
234 <summary> | |
235 Returns an <see cref="T:FluentAssertions.Assertions.IntegralAssertions`1"/> object that can be used to assert the | |
236 current nullable <see cref="T:System.Int64"/>. | |
237 </summary> | |
238 </member> | |
239 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Single)"> | |
240 <summary> | |
241 Returns an <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that can be used to assert the | |
242 current <see cref="T:System.Single"/>. | |
243 </summary> | |
244 </member> | |
245 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Nullable{System.Single})"> | |
246 <summary> | |
247 Returns an <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that can be used to assert the | |
248 current nullable <see cref="T:System.Single"/>. | |
249 </summary> | |
250 </member> | |
251 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Double)"> | |
252 <summary> | |
253 Returns an <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that can be used to assert the | |
254 current <see cref="T:System.Double"/>. | |
255 </summary> | |
256 </member> | |
257 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Nullable{System.Double})"> | |
258 <summary> | |
259 Returns an <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that can be used to assert the | |
260 current nullable <see cref="T:System.Double"/>. | |
261 </summary> | |
262 </member> | |
263 <member name="M:FluentAssertions.AssertionExtensions.Should(System.String)"> | |
264 <summary> | |
265 Returns an <see cref="T:FluentAssertions.Assertions.StringAssertions"/> object that can be used to assert the | |
266 current <see cref="T:System.String"/>. | |
267 </summary> | |
268 </member> | |
269 <member name="M:FluentAssertions.AssertionExtensions.Should(System.TimeSpan)"> | |
270 <summary> | |
271 Returns an <see cref="T:FluentAssertions.Assertions.SimpleTimeSpanAssertions"/> object that can be used to assert the | |
272 current <see cref="T:System.TimeSpan"/>. | |
273 </summary> | |
274 </member> | |
275 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Nullable{System.TimeSpan})"> | |
276 <summary> | |
277 Returns an <see cref="T:FluentAssertions.Assertions.NullableSimpleTimeSpanAssertions"/> object that can be used to assert the | |
278 current nullable <see cref="T:System.TimeSpan"/>. | |
279 </summary> | |
280 </member> | |
281 <member name="M:FluentAssertions.AssertionExtensions.ShouldHave``1(``0)"> | |
282 <summary> | |
283 Asserts that the properties of an object matches those of another object. | |
284 </summary> | |
285 </member> | |
286 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Type)"> | |
287 <summary> | |
288 Returns a <see cref="T:FluentAssertions.Assertions.TypeAssertions"/> object that can be used to assert the | |
289 current <see cref="T:System.Type"/>. | |
290 </summary> | |
291 </member> | |
292 <member name="M:FluentAssertions.AssertionExtensions.Should(FluentAssertions.Assertions.MethodInfoSelector)"> | |
293 <summary> | |
294 Returns a <see cref="T:FluentAssertions.Assertions.MethodInfoAssertions"/> object that can be used to assert the methods returned by the | |
295 current <see cref="T:FluentAssertions.Assertions.MethodInfoSelector"/>. | |
296 </summary> | |
297 <seealso cref="T:FluentAssertions.Assertions.TypeAssertions"/> | |
298 </member> | |
299 <member name="M:FluentAssertions.AssertionExtensions.Should(FluentAssertions.Assertions.PropertyInfoSelector)"> | |
300 <summary> | |
301 Returns a <see cref="T:FluentAssertions.Assertions.PropertyInfoAssertions"/> object that can be used to assert the properties returned by the | |
302 current <see cref="T:FluentAssertions.Assertions.PropertyInfoSelector"/>. | |
303 </summary> | |
304 <seealso cref="T:FluentAssertions.Assertions.TypeAssertions"/> | |
305 </member> | |
306 <member name="M:FluentAssertions.AssertionExtensions.As``1(System.Object)"> | |
307 <summary> | |
308 Safely casts the specified object to the type specified through <typeparamref name="TTo"/>. | |
309 </summary> | |
310 <remarks> | |
311 Has been introduced to allow casting objects without breaking the fluent API. | |
312 </remarks> | |
313 <typeparam name="TTo"></typeparam> | |
314 </member> | |
315 <member name="T:FluentAssertions.Assertions.ActionAssertions"> | |
316 <summary> | |
317 Contains a number of methods to assert that an <see cref="T:System.Action"/> yields the expected result. | |
318 </summary> | |
319 </member> | |
320 <member name="M:FluentAssertions.Assertions.ActionAssertions.ShouldThrow``1(System.String,System.Object[])"> | |
321 <summary> | |
322 Asserts that the current <see cref="T:System.Action"/> throws an exception of type <typeparamref name="TException"/>. | |
323 </summary> | |
324 <param name="reason"> | |
325 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
326 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
327 </param> | |
328 <param name="reasonArgs"> | |
329 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
330 </param> | |
331 </member> | |
332 <member name="M:FluentAssertions.Assertions.ActionAssertions.ShouldNotThrow``1(System.String,System.Object[])"> | |
333 <summary> | |
334 Asserts that the current <see cref="T:System.Action"/> does not throw an exception of type <typeparamref name="TException"/>. | |
335 </summary> | |
336 <param name="reason"> | |
337 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
338 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
339 </param> | |
340 <param name="reasonArgs"> | |
341 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
342 </param> | |
343 </member> | |
344 <member name="M:FluentAssertions.Assertions.ActionAssertions.ShouldNotThrow(System.String,System.Object[])"> | |
345 <summary> | |
346 Asserts that the current <see cref="T:System.Action"/> does not throw any exception. | |
347 </summary> | |
348 <param name="reason"> | |
349 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
350 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
351 </param> | |
352 <param name="reasonArgs"> | |
353 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
354 </param> | |
355 </member> | |
356 <member name="P:FluentAssertions.Assertions.ActionAssertions.Subject"> | |
357 <summary> | |
358 Gets the <see cref="T:System.Action"/> that is being asserted. | |
359 </summary> | |
360 </member> | |
361 <member name="T:FluentAssertions.Assertions.BooleanAssertions"> | |
362 <summary> | |
363 Contains a number of methods to assert that a <see cref="T:System.Boolean"/> is in the expected state. | |
364 </summary> | |
365 </member> | |
366 <member name="M:FluentAssertions.Assertions.BooleanAssertions.BeFalse"> | |
367 <summary> | |
368 Asserts that the value is <c>false</c>. | |
369 </summary> | |
370 </member> | |
371 <member name="M:FluentAssertions.Assertions.BooleanAssertions.BeFalse(System.String,System.Object[])"> | |
372 <summary> | |
373 Asserts that the value is <c>false</c>. | |
374 </summary> | |
375 <param name="reason"> | |
376 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
377 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
378 </param> | |
379 <param name="reasonArgs"> | |
380 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
381 </param> | |
382 </member> | |
383 <member name="M:FluentAssertions.Assertions.BooleanAssertions.BeTrue"> | |
384 <summary> | |
385 Asserts that the value is <c>true</c>. | |
386 </summary> | |
387 </member> | |
388 <member name="M:FluentAssertions.Assertions.BooleanAssertions.BeTrue(System.String,System.Object[])"> | |
389 <summary> | |
390 Asserts that the value is <c>true</c>. | |
391 </summary> | |
392 <param name="reason"> | |
393 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
394 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
395 </param> | |
396 <param name="reasonArgs"> | |
397 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
398 </param> | |
399 </member> | |
400 <member name="M:FluentAssertions.Assertions.BooleanAssertions.Be(System.Boolean)"> | |
401 <summary> | |
402 Asserts that the value is equal to the specified <paramref name="expected"/> value. | |
403 </summary> | |
404 <param name="expected">The expected value</param> | |
405 </member> | |
406 <member name="M:FluentAssertions.Assertions.BooleanAssertions.Be(System.Boolean,System.String,System.Object[])"> | |
407 <summary> | |
408 Asserts that the value is equal to the specified <paramref name="expected"/> value. | |
409 </summary> | |
410 <param name="expected">The expected value</param> | |
411 <param name="reason"> | |
412 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
413 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
414 </param> | |
415 <param name="reasonArgs"> | |
416 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
417 </param> | |
418 </member> | |
419 <member name="P:FluentAssertions.Assertions.BooleanAssertions.Subject"> | |
420 <summary> | |
421 Gets the object which value is being asserted. | |
422 </summary> | |
423 </member> | |
424 <member name="T:FluentAssertions.Assertions.CollectionAssertions`2"> | |
425 <summary> | |
426 Contains a number of methods to assert that an <see cref="T:System.Collections.IEnumerable"/> is in the expected state. | |
427 </summary> | |
428 </member> | |
429 <member name="T:FluentAssertions.Assertions.ReferenceTypeAssertions`2"> | |
430 <summary> | |
431 Contains a number of methods to assert that a reference type object is in the expected state. | |
432 </summary> | |
433 </member> | |
434 <member name="M:FluentAssertions.Assertions.ReferenceTypeAssertions`2.BeOfType``1"> | |
435 <summary> | |
436 Asserts that the object is of the specified type <typeparamref name="T"/>. | |
437 </summary> | |
438 <typeparam name="T">The expected type of the object.</typeparam> | |
439 </member> | |
440 <member name="M:FluentAssertions.Assertions.ReferenceTypeAssertions`2.BeOfType``1(System.String,System.Object[])"> | |
441 <summary> | |
442 Asserts that the object is of the specified type <typeparamref name="T"/>. | |
443 </summary> | |
444 <typeparam name="T">The expected type of the object.</typeparam> | |
445 <param name="reason"> | |
446 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
447 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
448 </param> | |
449 <param name="reasonArgs"> | |
450 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
451 </param> | |
452 </member> | |
453 <member name="M:FluentAssertions.Assertions.ReferenceTypeAssertions`2.BeAssignableTo``1"> | |
454 <summary> | |
455 Asserts that the object is assignable to a variable of type <typeparamref name="T"/>. | |
456 </summary> | |
457 <typeparam name="T">The type to which the object should be assignable.</typeparam> | |
458 <returns>An <see cref="T:FluentAssertions.AndConstraint`1"/> which can be used to chain assertions.</returns> | |
459 </member> | |
460 <member name="M:FluentAssertions.Assertions.ReferenceTypeAssertions`2.BeAssignableTo``1(System.String,System.Object[])"> | |
461 <summary> | |
462 Asserts that the object is assignable to a variable of type <typeparamref name="T"/>. | |
463 </summary> | |
464 <typeparam name="T">The type to which the object should be assignable.</typeparam> | |
465 <param name="reason">The reason why the object should be assignable to the type.</param> | |
466 <param name="reasonArgs">The parameters used when formatting the <paramref name="reason"/>.</param> | |
467 <returns>An <see cref="T:FluentAssertions.AndConstraint`1"/> which can be used to chain assertions.</returns> | |
468 </member> | |
469 <member name="M:FluentAssertions.Assertions.ReferenceTypeAssertions`2.Match(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})"> | |
470 <summary> | |
471 Asserts that the <paramref name="predicate"/> is statisfied. | |
472 </summary> | |
473 <param name="predicate">The predicate which must be satisfied by the <typeparamref name="TSubject"/>.</param> | |
474 <returns>An <see cref="T:FluentAssertions.AndConstraint`1"/> which can be used to chain assertions.</returns> | |
475 </member> | |
476 <member name="M:FluentAssertions.Assertions.ReferenceTypeAssertions`2.Match(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.String,System.Object[])"> | |
477 <summary> | |
478 Asserts that the <paramref name="predicate"/> is satisfied. | |
479 </summary> | |
480 <param name="predicate">The predicate which must be statisfied by the <typeparamref name="TSubject"/>.</param> | |
481 <param name="reason">The reason why the predicate should be satisfied.</param> | |
482 <param name="reasonArgs">The parameters used when formatting the <paramref name="reason"/>.</param> | |
483 <returns>An <see cref="T:FluentAssertions.AndConstraint`1"/> which can be used to chain assertions.</returns> | |
484 </member> | |
485 <member name="M:FluentAssertions.Assertions.ReferenceTypeAssertions`2.Match``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})"> | |
486 <summary> | |
487 Asserts that the <paramref name="predicate"/> is satisfied. | |
488 </summary> | |
489 <param name="predicate">The predicate which must be statisfied by the <typeparamref name="TSubject"/>.</param> | |
490 <returns>An <see cref="T:FluentAssertions.AndConstraint`1"/> which can be used to chain assertions.</returns> | |
491 </member> | |
492 <member name="M:FluentAssertions.Assertions.ReferenceTypeAssertions`2.Match``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.String,System.Object[])"> | |
493 <summary> | |
494 Asserts that the <paramref name="predicate"/> is satisfied. | |
495 </summary> | |
496 <param name="predicate">The predicate which must be statisfied by the <typeparamref name="TSubject"/>.</param> | |
497 <param name="reason">The reason why the predicate should be satisfied.</param> | |
498 <param name="reasonArgs">The parameters used when formatting the <paramref name="reason"/>.</param> | |
499 <returns>An <see cref="T:FluentAssertions.AndConstraint`1"/> which can be used to chain assertions.</returns> | |
500 </member> | |
501 <member name="P:FluentAssertions.Assertions.ReferenceTypeAssertions`2.Subject"> | |
502 <summary> | |
503 Gets the object which value is being asserted. | |
504 </summary> | |
505 </member> | |
506 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.HaveCount(System.Int32)"> | |
507 <summary> | |
508 Asserts that the number of items in the collection matches the supplied <paramref name="expected" /> amount. | |
509 </summary> | |
510 <param name="expected">The expected number of items in the collection.</param> | |
511 </member> | |
512 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.HaveCount(System.Int32,System.String,System.Object[])"> | |
513 <summary> | |
514 Asserts that the number of items in the collection matches the supplied <paramref name="expected"/> amount. | |
515 </summary> | |
516 <param name="expected">The expected number of items in the collection.</param> | |
517 <param name="reason"> | |
518 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
519 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
520 </param> | |
521 <param name="reasonArgs"> | |
522 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
523 </param> | |
524 </member> | |
525 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.HaveCount(System.Linq.Expressions.Expression{System.Func{System.Int32,System.Boolean}})"> | |
526 <summary> | |
527 Asserts that the number of items in the collection matches a condition stated by the <paramref name="countPredicate"/>. | |
528 </summary> | |
529 <param name="countPredicate">A predicate that yields the number of items that is expected to be in the collection.</param> | |
530 </member> | |
531 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.HaveCount(System.Linq.Expressions.Expression{System.Func{System.Int32,System.Boolean}},System.String,System.Object[])"> | |
532 <summary> | |
533 Asserts that the number of items in the collection matches a condition stated by the <paramref name="countPredicate"/>. | |
534 </summary> | |
535 <param name="countPredicate">A predicate that yields the number of items that is expected to be in the collection.</param> | |
536 <param name="reason"> | |
537 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
538 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
539 </param> | |
540 <param name="reasonArgs"> | |
541 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
542 </param> | |
543 </member> | |
544 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.BeEmpty"> | |
545 <summary> | |
546 Asserts that the collection does not contain any items. | |
547 </summary> | |
548 </member> | |
549 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.BeEmpty(System.String,System.Object[])"> | |
550 <summary> | |
551 Asserts that the collection does not contain any items. | |
552 </summary> | |
553 <param name="reason"> | |
554 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
555 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
556 </param> | |
557 <param name="reasonArgs"> | |
558 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
559 </param> | |
560 </member> | |
561 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotBeEmpty"> | |
562 <summary> | |
563 Asserts that the collection contains at least 1 item. | |
564 </summary> | |
565 </member> | |
566 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotBeEmpty(System.String,System.Object[])"> | |
567 <summary> | |
568 Asserts that the collection contains at least 1 item. | |
569 </summary> | |
570 <param name="reason"> | |
571 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
572 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
573 </param> | |
574 <param name="reasonArgs"> | |
575 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
576 </param> | |
577 </member> | |
578 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.OnlyHaveUniqueItems"> | |
579 <summary> | |
580 Asserts that the collection does not contain any duplicate items. | |
581 </summary> | |
582 </member> | |
583 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.OnlyHaveUniqueItems(System.String,System.Object[])"> | |
584 <summary> | |
585 Asserts that the collection does not contain any duplicate items. | |
586 </summary> | |
587 <param name="reason"> | |
588 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
589 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
590 </param> | |
591 <param name="reasonArgs"> | |
592 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
593 </param> | |
594 </member> | |
595 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotContainNulls"> | |
596 <summary> | |
597 Asserts that the collection does not contain any <c>null</c> items. | |
598 </summary> | |
599 </member> | |
600 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotContainNulls(System.String,System.Object[])"> | |
601 <summary> | |
602 Asserts that the collection does not contain any <c>null</c> items. | |
603 </summary> | |
604 <param name="reason"> | |
605 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
606 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
607 </param> | |
608 <param name="reasonArgs"> | |
609 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
610 </param> | |
611 </member> | |
612 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.Equal(System.Collections.IEnumerable)"> | |
613 <summary> | |
614 Expects the current collection to contain all the same elements in the same order as the collection identified by | |
615 <paramref name="expected"/>. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>. | |
616 </summary> | |
617 <param name="expected">An <see cref="T:System.Collections.IEnumerable"/> with the expected items.</param> | |
618 </member> | |
619 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.Equal(System.Object[])"> | |
620 <summary> | |
621 Expects the current collection to contain all the same elements in the same order as the collection identified by | |
622 <paramref name="elements"/>. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>. | |
623 </summary> | |
624 <param name="elements">A params array with the expected elements.</param> | |
625 </member> | |
626 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.Equal(System.Collections.IEnumerable,System.String,System.Object[])"> | |
627 <summary> | |
628 Expects the current collection to contain all the same elements in the same order as the collection identified by | |
629 <paramref name="expected"/>. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>. | |
630 </summary> | |
631 <param name="expected">An <see cref="T:System.Collections.IEnumerable"/> with the expected elements.</param> | |
632 <param name="reason"> | |
633 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
634 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
635 </param> | |
636 <param name="reasonArgs"> | |
637 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
638 </param> | |
639 </member> | |
640 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotEqual(System.Collections.IEnumerable)"> | |
641 <summary> | |
642 Expects the current collection not to contain all the same elements in the same order as the collection identified by | |
643 <paramref name="unexpected"/>. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>. | |
644 </summary> | |
645 <param name="unexpected">An <see cref="T:System.Collections.IEnumerable"/> with the elements that are not expected.</param> | |
646 </member> | |
647 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotEqual(System.Collections.IEnumerable,System.String,System.Object[])"> | |
648 <summary> | |
649 Expects the current collection not to contain all the same elements in the same order as the collection identified by | |
650 <paramref name="unexpected"/>. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>. | |
651 </summary> | |
652 <param name="unexpected">An <see cref="T:System.Collections.IEnumerable"/> with the elements that are not expected.</param> | |
653 <param name="reason"> | |
654 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
655 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
656 </param> | |
657 <param name="reasonArgs"> | |
658 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
659 </param> | |
660 </member> | |
661 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.BeEquivalentTo(System.Collections.IEnumerable)"> | |
662 <summary> | |
663 Expects the current collection to contain all elements of the collection identified by <paramref name="expected"/>, | |
664 regardless of the order. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>. | |
665 </summary> | |
666 <param name="expected">An <see cref="T:System.Collections.IEnumerable"/> with the expected elements.</param> | |
667 </member> | |
668 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.BeEquivalentTo(System.Object[])"> | |
669 <summary> | |
670 Expects the current collection to contain all elements of the collection identified by <paramref name="elements"/>, | |
671 regardless of the order. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>. | |
672 </summary> | |
673 <param name="elements">A params array with the expected elements.</param> | |
674 </member> | |
675 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.BeEquivalentTo(System.Collections.IEnumerable,System.String,System.Object[])"> | |
676 <summary> | |
677 Expects the current collection to contain all elements of the collection identified by <paramref name="expected"/>, | |
678 regardless of the order. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>. | |
679 </summary> | |
680 <param name="expected">An <see cref="T:System.Collections.IEnumerable"/> with the expected elements.</param> | |
681 <param name="reason"> | |
682 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
683 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
684 </param> | |
685 <param name="reasonArgs"> | |
686 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
687 </param> | |
688 </member> | |
689 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotBeEquivalentTo(System.Collections.IEnumerable)"> | |
690 <summary> | |
691 Expects the current collection not to contain all elements of the collection identified by <paramref name="unexpected"/>, | |
692 regardless of the order. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>. | |
693 </summary> | |
694 <param name="unexpected">An <see cref="T:System.Collections.IEnumerable"/> with the unexpected elements.</param> | |
695 </member> | |
696 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotBeEquivalentTo(System.Collections.IEnumerable,System.String,System.Object[])"> | |
697 <summary> | |
698 Expects the current collection not to contain all elements of the collection identified by <paramref name="unexpected"/>, | |
699 regardless of the order. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>. | |
700 </summary> | |
701 <param name="unexpected">An <see cref="T:System.Collections.IEnumerable"/> with the unexpected elements.</param> | |
702 <param name="reason"> | |
703 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
704 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
705 </param> | |
706 <param name="reasonArgs"> | |
707 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
708 </param> | |
709 </member> | |
710 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.ContainItemsAssignableTo``1(System.String,System.Object[])"> | |
711 <summary> | |
712 Asserts that the current collection only contains items that are assignable to the type <typeparamref name="T"/>. | |
713 </summary> | |
714 <param name="reason"> | |
715 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
716 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
717 </param> | |
718 <param name="reasonArgs"> | |
719 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
720 </param> | |
721 </member> | |
722 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.Contain(System.Collections.IEnumerable)"> | |
723 <summary> | |
724 Expects the current collection to contain the specified elements in any order. Elements are compared | |
725 using their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
726 </summary> | |
727 <param name="expected">An <see cref="T:System.Collections.IEnumerable"/> with the expected elements.</param> | |
728 </member> | |
729 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.Contain(System.Collections.IEnumerable,System.String,System.Object[])"> | |
730 <summary> | |
731 Expects the current collection to contain the specified elements in any order. Elements are compared | |
732 using their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
733 </summary> | |
734 <param name="expected">An <see cref="T:System.Collections.IEnumerable"/> with the expected elements.</param> | |
735 <param name="reason"> | |
736 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
737 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
738 </param> | |
739 <param name="reasonArgs"> | |
740 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
741 </param> | |
742 </member> | |
743 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.ContainInOrder(System.Collections.IEnumerable)"> | |
744 <summary> | |
745 Expects the current collection to contain the specified elements in the exact same order. Elements are compared | |
746 using their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
747 </summary> | |
748 <param name="expected">An <see cref="T:System.Collections.IEnumerable"/> with the expected elements.</param> | |
749 </member> | |
750 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.ContainInOrder(System.Collections.IEnumerable,System.String,System.Object[])"> | |
751 <summary> | |
752 Expects the current collection to contain the specified elements in the exact same order. Elements are compared | |
753 using their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
754 </summary> | |
755 <param name="expected">An <see cref="T:System.Collections.IEnumerable"/> with the expected elements.</param> | |
756 <param name="reason"> | |
757 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
758 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
759 </param> | |
760 <param name="reasonArgs"> | |
761 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
762 </param> | |
763 </member> | |
764 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.BeSubsetOf(System.Collections.IEnumerable)"> | |
765 <summary> | |
766 Asserts that the collection is a subset of the <paramref name="expectedSuperset"/>. | |
767 </summary> | |
768 <param name="expectedSuperset">An <see cref="T:System.Collections.IEnumerable"/> with the expected superset.</param> | |
769 </member> | |
770 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.BeSubsetOf(System.Collections.IEnumerable,System.String,System.Object[])"> | |
771 <summary> | |
772 Asserts that the collection is a subset of the <paramref name="expectedSuperset"/>. | |
773 </summary> | |
774 <param name="expectedSuperset">An <see cref="T:System.Collections.IEnumerable"/> with the expected superset.</param> | |
775 <param name="reason"> | |
776 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
777 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
778 </param> | |
779 <param name="reasonArgs"> | |
780 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
781 </param> | |
782 </member> | |
783 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotBeSubsetOf(System.Collections.IEnumerable)"> | |
784 <summary> | |
785 Asserts that the collection is not a subset of the <paramref name="unexpectedSuperset"/>. | |
786 </summary> | |
787 <param name="unexpectedSuperset">An <see cref="T:System.Collections.IEnumerable"/> with the unexpected superset.</param> | |
788 </member> | |
789 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotBeSubsetOf(System.Collections.IEnumerable,System.String,System.Object[])"> | |
790 <summary> | |
791 Asserts that the collection is not a subset of the <paramref name="unexpectedSuperset"/>. | |
792 </summary> | |
793 <param name="unexpectedSuperset">An <see cref="T:System.Collections.IEnumerable"/> with the unexpected superset.</param> | |
794 <param name="reason"> | |
795 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
796 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
797 </param> | |
798 <param name="reasonArgs"> | |
799 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
800 </param> | |
801 </member> | |
802 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.HaveSameCount(System.Collections.IEnumerable)"> | |
803 <summary> | |
804 Assert that the current collection has the same number of elements as <paramref name="otherCollection" />. | |
805 </summary> | |
806 <param name="otherCollection">The other collection with the same expected number of elements</param> | |
807 </member> | |
808 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.HaveSameCount(System.Collections.IEnumerable,System.String,System.Object[])"> | |
809 <summary> | |
810 Assert that the current collection has the same number of elements as <paramref name="otherCollection"/>. | |
811 </summary> | |
812 <param name="otherCollection">The other collection with the same expected number of elements</param> | |
813 <param name="reason"> | |
814 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
815 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
816 </param> | |
817 <param name="reasonArgs"> | |
818 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
819 </param> | |
820 </member> | |
821 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.BeNull"> | |
822 <summary> | |
823 Asserts that the current collection has not been initialized yet with an actual collection. | |
824 </summary> | |
825 </member> | |
826 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.BeNull(System.String,System.Object[])"> | |
827 <summary> | |
828 Asserts that the current collection has not been initialized yet with an actual collection. | |
829 </summary> | |
830 <param name="reason"> | |
831 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
832 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
833 </param> | |
834 <param name="reasonArgs"> | |
835 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
836 </param> | |
837 </member> | |
838 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotBeNull"> | |
839 <summary> | |
840 Asserts that the current collection has been initialized with an actual collection. | |
841 </summary> | |
842 </member> | |
843 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotBeNull(System.String,System.Object[])"> | |
844 <summary> | |
845 Asserts that the current collection has been initialized with an actual collection. | |
846 </summary> | |
847 <param name="reason"> | |
848 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
849 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
850 </param> | |
851 <param name="reasonArgs"> | |
852 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
853 </param> | |
854 </member> | |
855 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.HaveElementAt(System.Int32,System.Object)"> | |
856 <summary> | |
857 Asserts that the current collection has the supplied <paramref name="element" /> at the | |
858 supplied <paramref name="index" />. | |
859 </summary> | |
860 <param name="index">The index where the element is expected</param> | |
861 <param name="element">The expected element</param> | |
862 </member> | |
863 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.HaveElementAt(System.Int32,System.Object,System.String,System.Object[])"> | |
864 <summary> | |
865 Asserts that the current collection has the supplied <paramref name="element"/> at the | |
866 supplied <paramref name="index"/>. | |
867 </summary> | |
868 <param name="index">The index where the element is expected</param> | |
869 <param name="element">The expected element</param> | |
870 <param name="reason"> | |
871 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
872 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
873 </param> | |
874 <param name="reasonArgs"> | |
875 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
876 </param> | |
877 </member> | |
878 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.ContainItemsAssignableTo``1"> | |
879 <summary> | |
880 Asserts that the current collection only contains items that are assignable to the type <typeparamref name="T" />. | |
881 </summary> | |
882 </member> | |
883 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotContain(System.Object)"> | |
884 <summary> | |
885 Asserts that the current collection does not contain the supplied <paramref name="unexpected" /> item. | |
886 </summary> | |
887 <param name="unexpected">The element that is not expected to be in the collection</param> | |
888 </member> | |
889 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotContain(System.Object,System.String,System.Object[])"> | |
890 <summary> | |
891 Asserts that the current collection does not contain the supplied <paramref name="unexpected"/> item. | |
892 </summary> | |
893 <param name="unexpected">The element that is not expected to be in the collection</param> | |
894 <param name="reason"> | |
895 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
896 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
897 </param> | |
898 <param name="reasonArgs"> | |
899 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
900 </param> | |
901 </member> | |
902 <member name="T:FluentAssertions.Assertions.ComparableTypeAssertions`1"> | |
903 <summary> | |
904 Contains a number of methods to assert that an <see cref="T:System.IComparable`1"/> is in the expected state. | |
905 </summary> | |
906 </member> | |
907 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.Be(`0)"> | |
908 <summary> | |
909 Asserts that the subject is considered equal to another object according to the implementation of <see cref="T:System.IComparable`1"/>. | |
910 </summary> | |
911 <param name="expected"> | |
912 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method. | |
913 </param> | |
914 </member> | |
915 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.Be(`0,System.String,System.Object[])"> | |
916 <summary> | |
917 Asserts that the subject is considered equal to another object according to the implementation of <see cref="T:System.IComparable`1"/>. | |
918 </summary> | |
919 <param name="expected"> | |
920 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method. | |
921 </param> | |
922 <param name="reason"> | |
923 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
924 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
925 </param> | |
926 <param name="reasonArgs"> | |
927 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
928 </param> | |
929 </member> | |
930 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.NotBe(`0)"> | |
931 <summary> | |
932 Asserts that the subject is not equal to another object according to its implementation of <see cref="T:System.IComparable`1"/>. | |
933 </summary> | |
934 <param name="expected"> | |
935 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method. | |
936 </param> | |
937 </member> | |
938 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.NotBe(`0,System.String,System.Object[])"> | |
939 <summary> | |
940 Asserts that the subject is not equal to another object according to its implementation of <see cref="T:System.IComparable`1"/>. | |
941 </summary> | |
942 <param name="expected"> | |
943 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method. | |
944 </param> | |
945 <param name="reason"> | |
946 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
947 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
948 </param> | |
949 <param name="reasonArgs"> | |
950 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
951 </param> | |
952 </member> | |
953 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeLessThan(`0)"> | |
954 <summary> | |
955 Asserts that the subject is less than another object according to its implementation of <see cref="T:System.IComparable`1"/>. | |
956 </summary> | |
957 <param name="expected"> | |
958 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method. | |
959 </param> | |
960 </member> | |
961 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeLessThan(`0,System.String,System.Object[])"> | |
962 <summary> | |
963 Asserts that the subject is less than another object according to its implementation of <see cref="T:System.IComparable`1"/>. | |
964 </summary> | |
965 <param name="expected"> | |
966 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method. | |
967 </param> | |
968 <param name="reason"> | |
969 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
970 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
971 </param> | |
972 <param name="reasonArgs"> | |
973 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
974 </param> | |
975 </member> | |
976 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeLessOrEqualTo(`0)"> | |
977 <summary> | |
978 Asserts that the subject is less than or equal to another object according to its implementation of <see cref="T:System.IComparable`1"/>. | |
979 </summary> | |
980 <param name="expected"> | |
981 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method. | |
982 </param> | |
983 </member> | |
984 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeLessOrEqualTo(`0,System.String,System.Object[])"> | |
985 <summary> | |
986 Asserts that the subject is less than or equal to another object according to its implementation of <see cref="T:System.IComparable`1"/>. | |
987 </summary> | |
988 <param name="expected"> | |
989 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method. | |
990 </param> | |
991 <param name="reason"> | |
992 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
993 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
994 </param> | |
995 <param name="reasonArgs"> | |
996 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
997 </param> | |
998 </member> | |
999 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeGreaterThan(`0)"> | |
1000 <summary> | |
1001 Asserts that the subject is greater than another object according to its implementation of <see cref="T:System.IComparable`1"/>. | |
1002 </summary> | |
1003 <param name="expected"> | |
1004 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method. | |
1005 </param> | |
1006 </member> | |
1007 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeGreaterThan(`0,System.String,System.Object[])"> | |
1008 <summary> | |
1009 Asserts that the subject is greater than another object according to its implementation of <see cref="T:System.IComparable`1"/>. | |
1010 </summary> | |
1011 <param name="expected"> | |
1012 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method. | |
1013 </param> | |
1014 <param name="reason"> | |
1015 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1016 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1017 </param> | |
1018 <param name="reasonArgs"> | |
1019 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1020 </param> | |
1021 </member> | |
1022 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeGreaterOrEqualTo(`0)"> | |
1023 <summary> | |
1024 Asserts that the subject is greater than or equal to another object according to its implementation of <see cref="T:System.IComparable`1"/>. | |
1025 </summary> | |
1026 <param name="expected"> | |
1027 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method. | |
1028 </param> | |
1029 </member> | |
1030 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeGreaterOrEqualTo(`0,System.String,System.Object[])"> | |
1031 <summary> | |
1032 Asserts that the subject is greater than or equal to another object according to its implementation of <see cref="T:System.IComparable`1"/>. | |
1033 </summary> | |
1034 <param name="expected"> | |
1035 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method. | |
1036 </param> | |
1037 <param name="reason"> | |
1038 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1039 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1040 </param> | |
1041 <param name="reasonArgs"> | |
1042 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1043 </param> | |
1044 </member> | |
1045 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeInRange(`0,`0)"> | |
1046 <summary> | |
1047 Asserts that a value is within a range. | |
1048 </summary> | |
1049 <remarks> | |
1050 Where the range is continuous or incremental depends on the actual type of the value. | |
1051 </remarks> | |
1052 <param name="minimumValue"> | |
1053 The minimum valid value of the range. | |
1054 </param> | |
1055 <param name="maximumValue"> | |
1056 The maximum valid value of the range. | |
1057 </param> | |
1058 </member> | |
1059 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeInRange(`0,`0,System.String,System.Object[])"> | |
1060 <summary> | |
1061 Asserts that a value is within a range. | |
1062 </summary> | |
1063 <remarks> | |
1064 Where the range is continuous or incremental depends on the actual type of the value. | |
1065 </remarks> | |
1066 <param name="minimumValue"> | |
1067 The minimum valid value of the range. | |
1068 </param> | |
1069 <param name="maximumValue"> | |
1070 The maximum valid value of the range. | |
1071 </param> | |
1072 <param name="reason"> | |
1073 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1074 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1075 </param> | |
1076 <param name="reasonArgs"> | |
1077 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1078 </param> | |
1079 </member> | |
1080 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.NotBeNull"> | |
1081 <summary> | |
1082 Asserts that a nullable numeric value is not <c>null</c>. | |
1083 </summary> | |
1084 </member> | |
1085 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.NotBeNull(System.String,System.Object[])"> | |
1086 <summary> | |
1087 Asserts that a nullable numeric value is not <c>null</c>. | |
1088 </summary> | |
1089 <param name="reason"> | |
1090 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1091 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1092 </param> | |
1093 <param name="reasonArgs"> | |
1094 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1095 </param> | |
1096 </member> | |
1097 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeNull"> | |
1098 <summary> | |
1099 Asserts that a nullable numeric value is <c>null</c>. | |
1100 </summary> | |
1101 </member> | |
1102 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeNull(System.String,System.Object[])"> | |
1103 <summary> | |
1104 Asserts that a nullable numeric value is <c>null</c>. | |
1105 </summary> | |
1106 <param name="reason"> | |
1107 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1108 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1109 </param> | |
1110 <param name="reasonArgs"> | |
1111 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1112 </param> | |
1113 </member> | |
1114 <member name="P:FluentAssertions.Assertions.ComparableTypeAssertions`1.Subject"> | |
1115 <summary> | |
1116 Gets the object which value is being asserted. | |
1117 </summary> | |
1118 </member> | |
1119 <member name="T:FluentAssertions.Assertions.ComparisonMode"> | |
1120 <summary> | |
1121 Defines the way <see cref="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithMessage(System.String)"/> compares the expected exception | |
1122 message with the actual one. | |
1123 </summary> | |
1124 </member> | |
1125 <member name="F:FluentAssertions.Assertions.ComparisonMode.Exact"> | |
1126 <summary> | |
1127 The message must match exactly, including the casing of the characters. | |
1128 </summary> | |
1129 </member> | |
1130 <member name="F:FluentAssertions.Assertions.ComparisonMode.Equivalent"> | |
1131 <summary> | |
1132 The message must match except for the casing of the characters. | |
1133 </summary> | |
1134 </member> | |
1135 <member name="F:FluentAssertions.Assertions.ComparisonMode.StartWith"> | |
1136 <summary> | |
1137 The message must start with the exact text, including the casing of the characters.. | |
1138 </summary> | |
1139 </member> | |
1140 <member name="F:FluentAssertions.Assertions.ComparisonMode.StartWithEquivalent"> | |
1141 <summary> | |
1142 The message must start with the text except for the casing of the characters. | |
1143 </summary> | |
1144 </member> | |
1145 <member name="F:FluentAssertions.Assertions.ComparisonMode.Substring"> | |
1146 <summary> | |
1147 The message must contain the exact text. | |
1148 </summary> | |
1149 </member> | |
1150 <member name="F:FluentAssertions.Assertions.ComparisonMode.EquivalentSubstring"> | |
1151 <summary> | |
1152 The message must contain the text except for the casing of the characters. | |
1153 </summary> | |
1154 </member> | |
1155 <member name="F:FluentAssertions.Assertions.ComparisonMode.Wildcard"> | |
1156 <summary> | |
1157 The message must match a wildcard pattern consisting of ordinary characters as well as * and ?. | |
1158 </summary> | |
1159 </member> | |
1160 <member name="T:FluentAssertions.Assertions.DateTimeAssertions"> | |
1161 <summary> | |
1162 Contains a number of methods to assert that a <see cref="T:System.DateTime"/> is in the expected state. | |
1163 </summary> | |
1164 <remarks> | |
1165 You can use the <see cref="T:FluentAssertions.Common.FluentDateTimeExtensions"/> for a more fluent way of specifying a <see cref="T:System.DateTime"/>. | |
1166 </remarks> | |
1167 </member> | |
1168 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.Be(System.DateTime)"> | |
1169 <summary> | |
1170 Asserts that the current <see cref="T:System.DateTime"/> is exactly equal to the <paramref name="expected"/> value. | |
1171 </summary> | |
1172 </member> | |
1173 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.Be(System.DateTime,System.String,System.Object[])"> | |
1174 <summary> | |
1175 Asserts that the current <see cref="T:System.DateTime"/> is exactly equal to the <paramref name="expected"/> value. | |
1176 </summary> | |
1177 <param name="expected">The expected value</param> | |
1178 <param name="reason"> | |
1179 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1180 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1181 </param> | |
1182 <param name="reasonArgs"> | |
1183 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1184 </param> | |
1185 </member> | |
1186 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeBefore(System.DateTime)"> | |
1187 <summary> | |
1188 Asserts that the current <see cref="T:System.DateTime"/> is before the specified value. | |
1189 </summary> | |
1190 <param name="expected">The <see cref="T:System.DateTime"/> that the current value is expected to be before.</param> | |
1191 </member> | |
1192 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeBefore(System.DateTime,System.String,System.Object[])"> | |
1193 <summary> | |
1194 Asserts that the current <see cref="T:System.DateTime"/> is before the specified value. | |
1195 </summary> | |
1196 <param name="expected">The <see cref="T:System.DateTime"/> that the current value is expected to be before.</param> | |
1197 <param name="reason"> | |
1198 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1199 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1200 </param> | |
1201 <param name="reasonArgs"> | |
1202 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1203 </param> | |
1204 </member> | |
1205 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeOnOrBefore(System.DateTime)"> | |
1206 <summary> | |
1207 Asserts that the current <see cref="T:System.DateTime"/> is either on, or before the specified value. | |
1208 </summary> | |
1209 <param name="expected">The <see cref="T:System.DateTime"/> that the current value is expected to be on or before.</param> | |
1210 </member> | |
1211 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeOnOrBefore(System.DateTime,System.String,System.Object[])"> | |
1212 <summary> | |
1213 Asserts that the current <see cref="T:System.DateTime"/> is either on, or before the specified value. | |
1214 </summary> | |
1215 <param name="expected">The <see cref="T:System.DateTime"/> that the current value is expected to be on or before.</param> | |
1216 <param name="reason"> | |
1217 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1218 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1219 </param> | |
1220 <param name="reasonArgs"> | |
1221 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1222 </param> | |
1223 </member> | |
1224 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeAfter(System.DateTime)"> | |
1225 <summary> | |
1226 Asserts that the current <see cref="T:System.DateTime"/> is after the specified value. | |
1227 </summary> | |
1228 <param name="expected">The <see cref="T:System.DateTime"/> that the current value is expected to be after.</param> | |
1229 </member> | |
1230 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeAfter(System.DateTime,System.String,System.Object[])"> | |
1231 <summary> | |
1232 Asserts that the current <see cref="T:System.DateTime"/> is after the specified value. | |
1233 </summary> | |
1234 <param name="expected">The <see cref="T:System.DateTime"/> that the current value is expected to be after.</param> | |
1235 <param name="reason"> | |
1236 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1237 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1238 </param> | |
1239 <param name="reasonArgs"> | |
1240 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1241 </param> | |
1242 </member> | |
1243 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeOnOrAfter(System.DateTime)"> | |
1244 <summary> | |
1245 Asserts that the current <see cref="T:System.DateTime"/> is either on, or after the specified value. | |
1246 </summary> | |
1247 <param name="expected">The <see cref="T:System.DateTime"/> that the current value is expected to be on or after.</param> | |
1248 </member> | |
1249 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeOnOrAfter(System.DateTime,System.String,System.Object[])"> | |
1250 <summary> | |
1251 Asserts that the current <see cref="T:System.DateTime"/> is either on, or after the specified value. | |
1252 </summary> | |
1253 <param name="expected">The <see cref="T:System.DateTime"/> that the current value is expected to be on or after.</param> | |
1254 <param name="reason"> | |
1255 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1256 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1257 </param> | |
1258 <param name="reasonArgs"> | |
1259 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1260 </param> | |
1261 </member> | |
1262 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveYear(System.Int32)"> | |
1263 <summary> | |
1264 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> year. | |
1265 </summary> | |
1266 <param name="expected">The expected year of the current value.</param> | |
1267 </member> | |
1268 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveYear(System.Int32,System.String,System.Object[])"> | |
1269 <summary> | |
1270 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> year. | |
1271 </summary> | |
1272 <param name="expected">The expected year of the current value.</param> | |
1273 <param name="reason"> | |
1274 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1275 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1276 </param> | |
1277 <param name="reasonArgs"> | |
1278 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1279 </param> | |
1280 </member> | |
1281 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveMonth(System.Int32)"> | |
1282 <summary> | |
1283 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> month. | |
1284 </summary> | |
1285 <param name="expected">The expected month of the current value.</param> | |
1286 </member> | |
1287 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveMonth(System.Int32,System.String,System.Object[])"> | |
1288 <summary> | |
1289 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> month. | |
1290 </summary> | |
1291 <param name="expected">The expected month of the current value.</param> | |
1292 <param name="reason"> | |
1293 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1294 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1295 </param> | |
1296 <param name="reasonArgs"> | |
1297 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1298 </param> | |
1299 </member> | |
1300 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveDay(System.Int32)"> | |
1301 <summary> | |
1302 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> day. | |
1303 </summary> | |
1304 <param name="expected">The expected day of the current value.</param> | |
1305 </member> | |
1306 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveDay(System.Int32,System.String,System.Object[])"> | |
1307 <summary> | |
1308 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> day. | |
1309 </summary> | |
1310 <param name="expected">The expected day of the current value.</param> | |
1311 <param name="reason"> | |
1312 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1313 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1314 </param> | |
1315 <param name="reasonArgs"> | |
1316 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1317 </param> | |
1318 </member> | |
1319 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveHour(System.Int32)"> | |
1320 <summary> | |
1321 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> hour. | |
1322 </summary> | |
1323 <param name="expected">The expected hour of the current value.</param> | |
1324 </member> | |
1325 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveHour(System.Int32,System.String,System.Object[])"> | |
1326 <summary> | |
1327 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> hour. | |
1328 </summary> | |
1329 <param name="expected">The expected hour of the current value.</param> | |
1330 <param name="reason"> | |
1331 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1332 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1333 </param> | |
1334 <param name="reasonArgs"> | |
1335 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1336 </param> | |
1337 </member> | |
1338 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveMinute(System.Int32)"> | |
1339 <summary> | |
1340 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> minute. | |
1341 </summary> | |
1342 <param name="expected">The expected minutes of the current value.</param> | |
1343 </member> | |
1344 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveMinute(System.Int32,System.String,System.Object[])"> | |
1345 <summary> | |
1346 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> minute. | |
1347 </summary> | |
1348 <param name="expected">The expected minutes of the current value.</param> | |
1349 <param name="reason"> | |
1350 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1351 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1352 </param> | |
1353 <param name="reasonArgs"> | |
1354 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1355 </param> | |
1356 </member> | |
1357 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveSecond(System.Int32)"> | |
1358 <summary> | |
1359 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> second. | |
1360 </summary> | |
1361 <param name="expected">The expected seconds of the current value.</param> | |
1362 </member> | |
1363 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveSecond(System.Int32,System.String,System.Object[])"> | |
1364 <summary> | |
1365 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> second. | |
1366 </summary> | |
1367 <param name="expected">The expected seconds of the current value.</param> | |
1368 <param name="reason"> | |
1369 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1370 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1371 </param> | |
1372 <param name="reasonArgs"> | |
1373 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1374 </param> | |
1375 </member> | |
1376 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeMoreThan(System.TimeSpan)"> | |
1377 <summary> | |
1378 Returns a <see cref="T:FluentAssertions.Assertions.TimeSpanAssertions"/> object that can be used to assert that the current <see cref="T:System.DateTime"/> | |
1379 exceeds the specified <paramref name="timeSpan"/> compared to another <see cref="T:System.DateTime"/>. | |
1380 </summary> | |
1381 <param name="timeSpan"> | |
1382 The amount of time that the current <see cref="T:System.DateTime"/> should exceed compared to another <see cref="T:System.DateTime"/>. | |
1383 </param> | |
1384 </member> | |
1385 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeAtLeast(System.TimeSpan)"> | |
1386 <summary> | |
1387 Returns a <see cref="T:FluentAssertions.Assertions.TimeSpanAssertions"/> object that can be used to assert that the current <see cref="T:System.DateTime"/> | |
1388 is equal to or exceeds the specified <paramref name="timeSpan"/> compared to another <see cref="T:System.DateTime"/>. | |
1389 </summary> | |
1390 <param name="timeSpan"> | |
1391 The amount of time that the current <see cref="T:System.DateTime"/> should be equal or exceed compared to | |
1392 another <see cref="T:System.DateTime"/>. | |
1393 </param> | |
1394 </member> | |
1395 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeExactly(System.TimeSpan)"> | |
1396 <summary> | |
1397 Returns a <see cref="T:FluentAssertions.Assertions.TimeSpanAssertions"/> object that can be used to assert that the current <see cref="T:System.DateTime"/> | |
1398 differs exactly the specified <paramref name="timeSpan"/> compared to another <see cref="T:System.DateTime"/>. | |
1399 </summary> | |
1400 <param name="timeSpan"> | |
1401 The amount of time that the current <see cref="T:System.DateTime"/> should differ exactly compared to another <see cref="T:System.DateTime"/>. | |
1402 </param> | |
1403 </member> | |
1404 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeWithin(System.TimeSpan)"> | |
1405 <summary> | |
1406 Returns a <see cref="T:FluentAssertions.Assertions.TimeSpanAssertions"/> object that can be used to assert that the current <see cref="T:System.DateTime"/> | |
1407 is within the specified <paramref name="timeSpan"/> compared to another <see cref="T:System.DateTime"/>. | |
1408 </summary> | |
1409 <param name="timeSpan"> | |
1410 The amount of time that the current <see cref="T:System.DateTime"/> should be within another <see cref="T:System.DateTime"/>. | |
1411 </param> | |
1412 </member> | |
1413 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeLessThan(System.TimeSpan)"> | |
1414 <summary> | |
1415 Returns a <see cref="T:FluentAssertions.Assertions.TimeSpanAssertions"/> object that can be used to assert that the current <see cref="T:System.DateTime"/> | |
1416 differs at maximum the specified <paramref name="timeSpan"/> compared to another <see cref="T:System.DateTime"/>. | |
1417 </summary> | |
1418 <param name="timeSpan"> | |
1419 The maximum amount of time that the current <see cref="T:System.DateTime"/> should differ compared to another <see cref="T:System.DateTime"/>. | |
1420 </param> | |
1421 </member> | |
1422 <member name="P:FluentAssertions.Assertions.DateTimeAssertions.Subject"> | |
1423 <summary> | |
1424 Gets the object which value is being asserted. | |
1425 </summary> | |
1426 </member> | |
1427 <member name="T:FluentAssertions.Assertions.ExceptionAssertions`1"> | |
1428 <summary> | |
1429 Contains a number of methods to assert that an <see cref="T:System.Exception"/> is in the correct state. | |
1430 </summary> | |
1431 </member> | |
1432 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithMessage(System.String)"> | |
1433 <summary> | |
1434 Asserts that the thrown exception has a message that exactly matches the <paramref name = "expectedMessage" /> | |
1435 </summary> | |
1436 <param name = "expectedMessage"> | |
1437 The expected message of the exception. | |
1438 </param> | |
1439 </member> | |
1440 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithMessage(System.String,System.String,System.Object[])"> | |
1441 <summary> | |
1442 Asserts that the thrown exception has a message that matches <paramref name="expectedMessage"/> | |
1443 depending on the specified matching mode. | |
1444 </summary> | |
1445 <param name="expectedMessage"> | |
1446 The expected message of the exception. | |
1447 </param> | |
1448 <param name="reason"> | |
1449 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1450 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1451 </param> | |
1452 <param name="reasonArgs"> | |
1453 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1454 </param> | |
1455 </member> | |
1456 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithMessage(System.String,FluentAssertions.Assertions.ComparisonMode)"> | |
1457 <summary> | |
1458 Asserts that the thrown exception has a message that matches <paramref name = "expectedMessage" /> | |
1459 depending on the specified matching mode. | |
1460 </summary> | |
1461 <param name = "expectedMessage"> | |
1462 The expected message of the exception. | |
1463 </param> | |
1464 <param name = "comparisonMode"> | |
1465 Determines how the expected message is compared with the actual message. | |
1466 </param> | |
1467 </member> | |
1468 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithMessage(System.String,FluentAssertions.Assertions.ComparisonMode,System.String,System.Object[])"> | |
1469 <summary> | |
1470 Asserts that the thrown exception has a message that matches <paramref name="expectedMessage"/> | |
1471 depending on the specified matching mode. | |
1472 </summary> | |
1473 <param name="expectedMessage"> | |
1474 The expected message of the exception. | |
1475 </param> | |
1476 <param name="comparisonMode"> | |
1477 Determines how the expected message is compared with the actual message. | |
1478 </param> | |
1479 <param name="reason"> | |
1480 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1481 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1482 </param> | |
1483 <param name="reasonArgs"> | |
1484 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1485 </param> | |
1486 </member> | |
1487 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithInnerException``1"> | |
1488 <summary> | |
1489 Asserts that the thrown exception contains an inner exception of type <typeparamref name = "TInnerException" />. | |
1490 </summary> | |
1491 <typeparam name = "TInnerException">The expected type of the inner exception.</typeparam> | |
1492 </member> | |
1493 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithInnerException``1(System.String,System.Object[])"> | |
1494 <summary> | |
1495 Asserts that the thrown exception contains an inner exception of type <typeparamref name = "TInnerException" />. | |
1496 </summary> | |
1497 <typeparam name = "TInnerException">The expected type of the inner exception.</typeparam> | |
1498 <param name = "reason">The reason why the inner exception should be of the supplied type.</param> | |
1499 <param name = "reasonArgs">The parameters used when formatting the <paramref name = "reason" />.</param> | |
1500 </member> | |
1501 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithInnerMessage(System.String)"> | |
1502 <summary> | |
1503 Asserts that the thrown exception contains an inner exception with the <paramref name = "expectedInnerMessage" />. | |
1504 </summary> | |
1505 <param name = "expectedInnerMessage">The expected message of the inner exception.</param> | |
1506 </member> | |
1507 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithInnerMessage(System.String,FluentAssertions.Assertions.ComparisonMode)"> | |
1508 <summary> | |
1509 Asserts that the thrown exception contains an inner exception with the <paramref name = "expectedInnerMessage" />. | |
1510 </summary> | |
1511 <param name = "expectedInnerMessage">The expected message of the inner exception.</param> | |
1512 <param name = "comparisonMode">Determines how the expected message is compared with the actual message.</param> | |
1513 </member> | |
1514 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithInnerMessage(System.String,System.String,System.Object[])"> | |
1515 <summary> | |
1516 Asserts that the thrown exception contains an inner exception with the <paramref name = "expectedInnerMessage" />. | |
1517 </summary> | |
1518 <param name = "expectedInnerMessage">The expected message of the inner exception.</param> | |
1519 <param name = "reason"> | |
1520 The reason why the message of the inner exception should match <paramref name = "expectedInnerMessage" />. | |
1521 </param> | |
1522 <param name = "reasonArgs">The parameters used when formatting the <paramref name = "reason" />.</param> | |
1523 </member> | |
1524 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithInnerMessage(System.String,FluentAssertions.Assertions.ComparisonMode,System.String,System.Object[])"> | |
1525 <summary> | |
1526 Asserts that the thrown exception contains an inner exception with the <paramref name = "expectedInnerMessage" />. | |
1527 </summary> | |
1528 <param name = "expectedInnerMessage">The expected message of the inner exception.</param> | |
1529 <param name = "comparisonMode">Determines how the expected message is compared with the actual message.</param> | |
1530 <param name = "reason"> | |
1531 The reason why the message of the inner exception should match <paramref name = "expectedInnerMessage" />. | |
1532 </param> | |
1533 <param name = "reasonArgs">The parameters used when formatting the <paramref name = "reason" />.</param> | |
1534 </member> | |
1535 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.Where(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})"> | |
1536 <summary> | |
1537 Asserts that the exception matches a particular condition. | |
1538 </summary> | |
1539 <param name = "exceptionExpression"> | |
1540 The condition that the exception must match. | |
1541 </param> | |
1542 </member> | |
1543 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.Where(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.String,System.Object[])"> | |
1544 <summary> | |
1545 Asserts that the exception matches a particular condition. | |
1546 </summary> | |
1547 <param name="exceptionExpression"> | |
1548 The condition that the exception must match. | |
1549 </param> | |
1550 <param name="reason"> | |
1551 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
1552 start with the word <i>because</i>, it is prepended to the message. | |
1553 </param> | |
1554 <param name="reasonArgs"> | |
1555 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
1556 </param> | |
1557 </member> | |
1558 <member name="P:FluentAssertions.Assertions.ExceptionAssertions`1.And"> | |
1559 <summary> | |
1560 Gets the exception object of the exception thrown. | |
1561 </summary> | |
1562 </member> | |
1563 <member name="T:FluentAssertions.Assertions.FloatingPointExtensions"> | |
1564 <summary> | |
1565 Contains a number of extension methods for floating point <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/>. | |
1566 </summary> | |
1567 </member> | |
1568 <member name="M:FluentAssertions.Assertions.FloatingPointExtensions.BeApproximately(FluentAssertions.Assertions.NumericAssertions{System.Nullable{System.Single}},System.Single,System.Single)"> | |
1569 <summary> | |
1570 Asserts a floating point value approximates another value as close as possible. | |
1571 </summary> | |
1572 <param name="parent">The <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that is being extended.</param> | |
1573 <param name="expectedValue"> | |
1574 The expected value to compare the actual value with. | |
1575 </param> | |
1576 <param name="precision"> | |
1577 The maximum amount of which the two values may differ. | |
1578 </param> | |
1579 </member> | |
1580 <member name="M:FluentAssertions.Assertions.FloatingPointExtensions.BeApproximately(FluentAssertions.Assertions.NumericAssertions{System.Nullable{System.Single}},System.Single,System.Single,System.String,System.Object[])"> | |
1581 <summary> | |
1582 Asserts a floating point value approximates another value as close as possible. | |
1583 </summary> | |
1584 <param name="parent">The <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that is being extended.</param> | |
1585 <param name="expectedValue"> | |
1586 The expected value to compare the actual value with. | |
1587 </param> | |
1588 <param name="precision"> | |
1589 The maximum amount of which the two values may differ. | |
1590 </param> | |
1591 <param name="reason"> | |
1592 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1593 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1594 </param> | |
1595 <param name="reasonArgs"> | |
1596 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1597 </param> | |
1598 </member> | |
1599 <member name="M:FluentAssertions.Assertions.FloatingPointExtensions.BeApproximately(FluentAssertions.Assertions.NumericAssertions{System.Single},System.Single,System.Single)"> | |
1600 <summary> | |
1601 Asserts a floating point value approximates another value as close as possible. | |
1602 </summary> | |
1603 <param name="parent">The <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that is being extended.</param> | |
1604 <param name="expectedValue"> | |
1605 The expected value to compare the actual value with. | |
1606 </param> | |
1607 <param name="precision"> | |
1608 The maximum amount of which the two values may differ. | |
1609 </param> | |
1610 </member> | |
1611 <member name="M:FluentAssertions.Assertions.FloatingPointExtensions.BeApproximately(FluentAssertions.Assertions.NumericAssertions{System.Single},System.Single,System.Single,System.String,System.Object[])"> | |
1612 <summary> | |
1613 Asserts a floating point value approximates another value as close as possible. | |
1614 </summary> | |
1615 <param name="parent">The <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that is being extended.</param> | |
1616 <param name="expectedValue"> | |
1617 The expected value to compare the actual value with. | |
1618 </param> | |
1619 <param name="precision"> | |
1620 The maximum amount of which the two values may differ. | |
1621 </param> | |
1622 <param name="reason"> | |
1623 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1624 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1625 </param> | |
1626 <param name="reasonArgs"> | |
1627 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1628 </param> | |
1629 </member> | |
1630 <member name="M:FluentAssertions.Assertions.FloatingPointExtensions.BeApproximately(FluentAssertions.Assertions.NumericAssertions{System.Nullable{System.Double}},System.Double,System.Double)"> | |
1631 <summary> | |
1632 Asserts a floating point value approximates another value as close as possible. | |
1633 </summary> | |
1634 <param name="parent">The <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that is being extended.</param> | |
1635 <param name="expectedValue"> | |
1636 The expected value to compare the actual value with. | |
1637 </param> | |
1638 <param name="precision"> | |
1639 The maximum amount of which the two values may differ. | |
1640 </param> | |
1641 </member> | |
1642 <member name="M:FluentAssertions.Assertions.FloatingPointExtensions.BeApproximately(FluentAssertions.Assertions.NumericAssertions{System.Nullable{System.Double}},System.Double,System.Double,System.String,System.Object[])"> | |
1643 <summary> | |
1644 Asserts a floating point value approximates another value as close as possible. | |
1645 </summary> | |
1646 <param name="parent">The <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that is being extended.</param> | |
1647 <param name="expectedValue"> | |
1648 The expected value to compare the actual value with. | |
1649 </param> | |
1650 <param name="precision"> | |
1651 The maximum amount of which the two values may differ. | |
1652 </param> | |
1653 <param name="reason"> | |
1654 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1655 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1656 </param> | |
1657 <param name="reasonArgs"> | |
1658 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1659 </param> | |
1660 </member> | |
1661 <member name="M:FluentAssertions.Assertions.FloatingPointExtensions.BeApproximately(FluentAssertions.Assertions.NumericAssertions{System.Double},System.Double,System.Double)"> | |
1662 <summary> | |
1663 Asserts a floating point value approximates another value as close as possible. | |
1664 </summary> | |
1665 <param name="parent">The <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that is being extended.</param> | |
1666 <param name="expectedValue"> | |
1667 The expected value to compare the actual value with. | |
1668 </param> | |
1669 <param name="precision"> | |
1670 The maximum amount of which the two values may differ. | |
1671 </param> | |
1672 </member> | |
1673 <member name="M:FluentAssertions.Assertions.FloatingPointExtensions.BeApproximately(FluentAssertions.Assertions.NumericAssertions{System.Double},System.Double,System.Double,System.String,System.Object[])"> | |
1674 <summary> | |
1675 Asserts a floating point value approximates another value as close as possible. | |
1676 </summary> | |
1677 <param name="parent">The <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that is being extended.</param> | |
1678 <param name="expectedValue"> | |
1679 The expected value to compare the actual value with. | |
1680 </param> | |
1681 <param name="precision"> | |
1682 The maximum amount of which the two values may differ. | |
1683 </param> | |
1684 <param name="reason"> | |
1685 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1686 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1687 </param> | |
1688 <param name="reasonArgs"> | |
1689 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1690 </param> | |
1691 </member> | |
1692 <member name="T:FluentAssertions.Assertions.GenericCollectionAssertions`1"> | |
1693 <summary> | |
1694 Contains a number of methods to assert that an <see cref="T:System.Collections.Generic.IEnumerable`1"/> is in the expected state. | |
1695 </summary> | |
1696 </member> | |
1697 <member name="M:FluentAssertions.Assertions.GenericCollectionAssertions`1.Contain(`0)"> | |
1698 <summary> | |
1699 Asserts that the collection contains the specified item. | |
1700 </summary> | |
1701 </member> | |
1702 <member name="M:FluentAssertions.Assertions.GenericCollectionAssertions`1.Contain(`0,System.String,System.Object[])"> | |
1703 <summary> | |
1704 Asserts that the collection contains the specified item. | |
1705 </summary> | |
1706 <param name="expected">The expected item.</param> | |
1707 <param name="reason"> | |
1708 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
1709 start with the word <i>because</i>, it is prepended to the message. | |
1710 </param> | |
1711 <param name="reasonArgs"> | |
1712 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
1713 </param> | |
1714 </member> | |
1715 <member name="M:FluentAssertions.Assertions.GenericCollectionAssertions`1.Contain(System.Collections.Generic.IEnumerable{`0},`0[])"> | |
1716 <summary> | |
1717 Asserts that the collection contains some extra items in addition to the original items. | |
1718 </summary> | |
1719 <param name="expectedItemsList">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of expected items.</param> | |
1720 <param name="additionalExpectedItems">Additional items that are expected to be contained by the collection.</param> | |
1721 </member> | |
1722 <member name="M:FluentAssertions.Assertions.GenericCollectionAssertions`1.Contain(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})"> | |
1723 <summary> | |
1724 Asserts that the collection contains at least one item that matches the predicate. | |
1725 </summary> | |
1726 <param name="predicate">A predicate to match the items in the collection against.</param> | |
1727 </member> | |
1728 <member name="M:FluentAssertions.Assertions.GenericCollectionAssertions`1.Contain(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.String,System.Object[])"> | |
1729 <summary> | |
1730 Asserts that the collection contains at least one item that matches the predicate. | |
1731 </summary> | |
1732 <param name="predicate">A predicate to match the items in the collection against.</param> | |
1733 <param name="reason"> | |
1734 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
1735 start with the word <i>because</i>, it is prepended to the message. | |
1736 </param> | |
1737 <param name="reasonArgs"> | |
1738 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
1739 </param> | |
1740 </member> | |
1741 <member name="M:FluentAssertions.Assertions.GenericCollectionAssertions`1.OnlyContain(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})"> | |
1742 <summary> | |
1743 Asserts that the collection only contains items that match a predicate. | |
1744 </summary> | |
1745 <param name="predicate">A predicate to match the items in the collection against.</param> | |
1746 </member> | |
1747 <member name="M:FluentAssertions.Assertions.GenericCollectionAssertions`1.OnlyContain(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.String,System.Object[])"> | |
1748 <summary> | |
1749 Asserts that the collection only contains items that match a predicate. | |
1750 </summary> | |
1751 <param name="predicate">A predicate to match the items in the collection against.</param> | |
1752 <param name="reason"> | |
1753 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
1754 start with the word <i>because</i>, it is prepended to the message. | |
1755 </param> | |
1756 <param name="reasonArgs"> | |
1757 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
1758 </param> | |
1759 </member> | |
1760 <member name="M:FluentAssertions.Assertions.GenericCollectionAssertions`1.NotContain(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})"> | |
1761 <summary> | |
1762 Asserts that the collection does not contain any items that match the predicate. | |
1763 </summary> | |
1764 <param name="predicate">A predicate to match the items in the collection against.</param> | |
1765 </member> | |
1766 <member name="M:FluentAssertions.Assertions.GenericCollectionAssertions`1.NotContain(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.String,System.Object[])"> | |
1767 <summary> | |
1768 Asserts that the collection does not contain any items that match the predicate. | |
1769 </summary> | |
1770 <param name="predicate">A predicate to match the items in the collection against.</param> | |
1771 <param name="reason"> | |
1772 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
1773 start with the word <i>because</i>, it is prepended to the message. | |
1774 </param> | |
1775 <param name="reasonArgs"> | |
1776 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
1777 </param> | |
1778 </member> | |
1779 <member name="T:FluentAssertions.Assertions.GenericDictionaryAssertions`2"> | |
1780 <summary> | |
1781 Contains a number of methods to assert that an <see cref="T:System.Collections.Generic.IDictionary`2"/> is in the expected state. | |
1782 </summary> | |
1783 </member> | |
1784 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.BeNull"> | |
1785 <summary> | |
1786 Asserts that the current dictionary has not been initialized yet with an actual dictionary. | |
1787 </summary> | |
1788 </member> | |
1789 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.BeNull(System.String,System.Object[])"> | |
1790 <summary> | |
1791 Asserts that the current dictionary has not been initialized yet with an actual dictionary. | |
1792 </summary> | |
1793 <param name="reason"> | |
1794 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1795 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1796 </param> | |
1797 <param name="reasonArgs"> | |
1798 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1799 </param> | |
1800 </member> | |
1801 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotBeNull"> | |
1802 <summary> | |
1803 Asserts that the current dictionary has been initialized with an actual dictionary. | |
1804 </summary> | |
1805 </member> | |
1806 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotBeNull(System.String,System.Object[])"> | |
1807 <summary> | |
1808 Asserts that the current dictionary has been initialized with an actual dictionary. | |
1809 </summary> | |
1810 <param name="reason"> | |
1811 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1812 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1813 </param> | |
1814 <param name="reasonArgs"> | |
1815 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1816 </param> | |
1817 </member> | |
1818 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.HaveCount(System.Int32)"> | |
1819 <summary> | |
1820 Asserts that the number of items in the dictionary matches the supplied <paramref name="expected" /> amount. | |
1821 </summary> | |
1822 <param name="expected">The expected number of items.</param> | |
1823 </member> | |
1824 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.HaveCount(System.Int32,System.String,System.Object[])"> | |
1825 <summary> | |
1826 Asserts that the number of items in the dictionary matches the supplied <paramref name="expected"/> amount. | |
1827 </summary> | |
1828 <param name="expected">The expected number of items.</param> | |
1829 <param name="reason"> | |
1830 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1831 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1832 </param> | |
1833 <param name="reasonArgs"> | |
1834 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1835 </param> | |
1836 </member> | |
1837 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.HaveCount(System.Linq.Expressions.Expression{System.Func{System.Int32,System.Boolean}})"> | |
1838 <summary> | |
1839 Asserts that the number of items in the dictionary matches a condition stated by a predicate. | |
1840 </summary> | |
1841 <param name="countPredicate">The predicate which must be statisfied by the amount of items.</param> | |
1842 </member> | |
1843 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.HaveCount(System.Linq.Expressions.Expression{System.Func{System.Int32,System.Boolean}},System.String,System.Object[])"> | |
1844 <summary> | |
1845 Asserts that the number of items in the dictionary matches a condition stated by a predicate. | |
1846 </summary> | |
1847 <param name="countPredicate">The predicate which must be statisfied by the amount of items.</param> | |
1848 <param name="reason"> | |
1849 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1850 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1851 </param> | |
1852 <param name="reasonArgs"> | |
1853 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1854 </param> | |
1855 </member> | |
1856 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.BeEmpty"> | |
1857 <summary> | |
1858 Asserts that the dictionary does not contain any items. | |
1859 </summary> | |
1860 </member> | |
1861 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.BeEmpty(System.String,System.Object[])"> | |
1862 <summary> | |
1863 Asserts that the dictionary does not contain any items. | |
1864 </summary> | |
1865 <param name="reason"> | |
1866 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1867 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1868 </param> | |
1869 <param name="reasonArgs"> | |
1870 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1871 </param> | |
1872 </member> | |
1873 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotBeEmpty"> | |
1874 <summary> | |
1875 Asserts that the dictionary contains at least 1 item. | |
1876 </summary> | |
1877 </member> | |
1878 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotBeEmpty(System.String,System.Object[])"> | |
1879 <summary> | |
1880 Asserts that the dictionary contains at least 1 item. | |
1881 </summary> | |
1882 <param name="reason"> | |
1883 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1884 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1885 </param> | |
1886 <param name="reasonArgs"> | |
1887 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1888 </param> | |
1889 </member> | |
1890 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.Equal(System.Collections.Generic.IDictionary{`0,`1})"> | |
1891 <summary> | |
1892 Asserts that the current dictionary contains all the same key-value pairs as the | |
1893 specified <paramref name="expected"/> dictionary. Keys and values are compared using | |
1894 their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
1895 </summary> | |
1896 <param name="expected">The expected dictionary</param> | |
1897 </member> | |
1898 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.Equal(System.Collections.Generic.IDictionary{`0,`1},System.String,System.Object[])"> | |
1899 <summary> | |
1900 Asserts that the current dictionary contains all the same key-value pairs as the | |
1901 specified <paramref name="expected"/> dictionary. Keys and values are compared using | |
1902 their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
1903 </summary> | |
1904 <param name="expected">The expected dictionary</param> | |
1905 <param name="reason"> | |
1906 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1907 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1908 </param> | |
1909 <param name="reasonArgs"> | |
1910 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1911 </param> | |
1912 </member> | |
1913 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotEqual(System.Collections.Generic.IDictionary{`0,`1})"> | |
1914 <summary> | |
1915 Asserts the current dictionary not to contain all the same key-value pairs as the | |
1916 specified <paramref name="unexpected"/> dictionary. Keys and values are compared using | |
1917 their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
1918 </summary> | |
1919 <param name="unexpected">The unexpected dictionary</param> | |
1920 </member> | |
1921 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotEqual(System.Collections.Generic.IDictionary{`0,`1},System.String,System.Object[])"> | |
1922 <summary> | |
1923 Asserts the current dictionary not to contain all the same key-value pairs as the | |
1924 specified <paramref name="unexpected"/> dictionary. Keys and values are compared using | |
1925 their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
1926 </summary> | |
1927 <param name="unexpected">The unexpected dictionary</param> | |
1928 <param name="reason"> | |
1929 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1930 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1931 </param> | |
1932 <param name="reasonArgs"> | |
1933 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1934 </param> | |
1935 </member> | |
1936 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.ContainKey(`0)"> | |
1937 <summary> | |
1938 Asserts that the dictionary contains the specified key. Keys are compared using | |
1939 their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
1940 </summary> | |
1941 <param name="expected">The expected key</param> | |
1942 </member> | |
1943 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.ContainKey(`0,System.String,System.Object[])"> | |
1944 <summary> | |
1945 Asserts that the dictionary contains the specified key. Keys are compared using | |
1946 their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
1947 </summary> | |
1948 <param name="expected">The expected key</param> | |
1949 <param name="reason"> | |
1950 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1951 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1952 </param> | |
1953 <param name="reasonArgs"> | |
1954 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1955 </param> | |
1956 </member> | |
1957 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.ContainKeys(`0[])"> | |
1958 <summary> | |
1959 Asserts that the dictionary contains all of the specified keys. Keys are compared using | |
1960 their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
1961 </summary> | |
1962 <param name="expected">The expected keys</param> | |
1963 </member> | |
1964 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.ContainKeys(System.Collections.Generic.IEnumerable{`0},System.String,System.Object[])"> | |
1965 <summary> | |
1966 Asserts that the dictionary contains all of the specified keys. Keys are compared using | |
1967 their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
1968 </summary> | |
1969 <param name="expected">The expected keys</param> | |
1970 <param name="reason"> | |
1971 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1972 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1973 </param> | |
1974 <param name="reasonArgs"> | |
1975 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1976 </param> | |
1977 </member> | |
1978 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotContainKey(`0)"> | |
1979 <summary> | |
1980 Asserts that the current dictionary does not contain the specified <paramref name="unexpected"/> key. | |
1981 Keys are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
1982 </summary> | |
1983 <param name="unexpected">The unexpected key</param> | |
1984 </member> | |
1985 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotContainKey(`0,System.String,System.Object[])"> | |
1986 <summary> | |
1987 Asserts that the current dictionary does not contain the specified <paramref name="unexpected"/> key. | |
1988 Keys are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
1989 </summary> | |
1990 <param name="unexpected">The unexpected key</param> | |
1991 <param name="reason"> | |
1992 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
1993 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
1994 </param> | |
1995 <param name="reasonArgs"> | |
1996 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
1997 </param> | |
1998 </member> | |
1999 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.ContainValue(`1)"> | |
2000 <summary> | |
2001 Asserts that the dictionary contains the specified value. Values are compared using | |
2002 their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
2003 </summary> | |
2004 <param name="expected">The expected value</param> | |
2005 </member> | |
2006 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.ContainValue(`1,System.String,System.Object[])"> | |
2007 <summary> | |
2008 Asserts that the dictionary contains the specified value. Values are compared using | |
2009 their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
2010 </summary> | |
2011 <param name="expected">The expected value</param> | |
2012 <param name="reason"> | |
2013 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2014 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2015 </param> | |
2016 <param name="reasonArgs"> | |
2017 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2018 </param> | |
2019 </member> | |
2020 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.ContainValues(`1[])"> | |
2021 <summary> | |
2022 Asserts that the dictionary contains all of the specified values. Values are compared using | |
2023 their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
2024 </summary> | |
2025 <param name="expected">The expected values</param> | |
2026 </member> | |
2027 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.ContainValues(System.Collections.Generic.IEnumerable{`1},System.String,System.Object[])"> | |
2028 <summary> | |
2029 Asserts that the dictionary contains all of the specified values. Values are compared using | |
2030 their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
2031 </summary> | |
2032 <param name="expected">The expected values</param> | |
2033 <param name="reason"> | |
2034 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2035 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2036 </param> | |
2037 <param name="reasonArgs"> | |
2038 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2039 </param> | |
2040 </member> | |
2041 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotContainValue(`1)"> | |
2042 <summary> | |
2043 Asserts that the current dictionary does not contain the specified <paramref name="unexpected"/> value. | |
2044 Values are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
2045 </summary> | |
2046 <param name="unexpected">The unexpected value</param> | |
2047 </member> | |
2048 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotContainValue(`1,System.String,System.Object[])"> | |
2049 <summary> | |
2050 Asserts that the current dictionary does not contain the specified <paramref name="unexpected"/> value. | |
2051 Values are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
2052 </summary> | |
2053 <param name="unexpected">The unexpected value</param> | |
2054 <param name="reason"> | |
2055 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2056 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2057 </param> | |
2058 <param name="reasonArgs"> | |
2059 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2060 </param> | |
2061 </member> | |
2062 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.Contain(System.Collections.Generic.KeyValuePair{`0,`1})"> | |
2063 <summary> | |
2064 Asserts that the current dictionary contains the specified <paramref name="expected"/>. | |
2065 Keys and values are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
2066 </summary> | |
2067 <param name="expected">The expected <see cref="T:System.Collections.Generic.KeyValuePair`2"/></param> | |
2068 </member> | |
2069 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.Contain(System.Collections.Generic.KeyValuePair{`0,`1},System.String,System.Object[])"> | |
2070 <summary> | |
2071 Asserts that the current dictionary contains the specified <paramref name="expected"/>. | |
2072 Keys and values are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
2073 </summary> | |
2074 <param name="expected">The expected <see cref="T:System.Collections.Generic.KeyValuePair`2"/></param> | |
2075 <param name="reason"> | |
2076 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2077 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2078 </param> | |
2079 <param name="reasonArgs"> | |
2080 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2081 </param> | |
2082 </member> | |
2083 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.Contain(`0,`1)"> | |
2084 <summary> | |
2085 Asserts that the current dictionary contains the specified <paramref name="value"/> for the supplied <paramref name="key"/>. Values are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
2086 </summary> | |
2087 <param name="key">The key for which to validate the value</param> | |
2088 <param name="value">The value to validate</param> | |
2089 </member> | |
2090 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.Contain(`0,`1,System.String,System.Object[])"> | |
2091 <summary> | |
2092 Asserts that the current dictionary contains the specified <paramref name="value"/> for the supplied <paramref name="key"/>. Values are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
2093 </summary> | |
2094 <param name="key">The key for which to validate the value</param> | |
2095 <param name="value">The value to validate</param> | |
2096 <param name="reason"> | |
2097 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2098 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2099 </param> | |
2100 <param name="reasonArgs"> | |
2101 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2102 </param> | |
2103 </member> | |
2104 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotContain(System.Collections.Generic.KeyValuePair{`0,`1})"> | |
2105 <summary> | |
2106 Asserts that the current dictionary does not contain the specified <paramref name="item"/>. | |
2107 Keys and values are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
2108 </summary> | |
2109 <param name="item">The unexpected <see cref="T:System.Collections.Generic.KeyValuePair`2"/></param> | |
2110 </member> | |
2111 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotContain(System.Collections.Generic.KeyValuePair{`0,`1},System.String,System.Object[])"> | |
2112 <summary> | |
2113 Asserts that the current dictionary does not contain the specified <paramref name="item"/>. | |
2114 Keys and values are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
2115 </summary> | |
2116 <param name="item">The unexpected <see cref="T:System.Collections.Generic.KeyValuePair`2"/></param> | |
2117 <param name="reason"> | |
2118 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2119 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2120 </param> | |
2121 <param name="reasonArgs"> | |
2122 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2123 </param> | |
2124 </member> | |
2125 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotContain(`0,`1)"> | |
2126 <summary> | |
2127 Asserts that the current dictionary does not contain the specified <paramref name="value"/> for the | |
2128 supplied <paramref name="key"/>. Values are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
2129 </summary> | |
2130 <param name="key">The key for which to validate the value</param> | |
2131 <param name="value">The value to validate</param> | |
2132 </member> | |
2133 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotContain(`0,`1,System.String,System.Object[])"> | |
2134 <summary> | |
2135 Asserts that the current dictionary does not contain the specified <paramref name="value"/> for the | |
2136 supplied <paramref name="key"/>. Values are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
2137 </summary> | |
2138 <param name="key">The key for which to validate the value</param> | |
2139 <param name="value">The value to validate</param> | |
2140 <param name="reason"> | |
2141 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2142 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2143 </param> | |
2144 <param name="reasonArgs"> | |
2145 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2146 </param> | |
2147 </member> | |
2148 <member name="P:FluentAssertions.Assertions.GenericDictionaryAssertions`2.Subject"> | |
2149 <summary> | |
2150 Gets the object which value is being asserted. | |
2151 </summary> | |
2152 </member> | |
2153 <member name="T:FluentAssertions.Assertions.GuidAssertions"> | |
2154 <summary> | |
2155 Contains a number of methods to assert that a <see cref="T:System.Guid"/> is in the correct state. | |
2156 </summary> | |
2157 </member> | |
2158 <member name="M:FluentAssertions.Assertions.GuidAssertions.BeEmpty"> | |
2159 <summary> | |
2160 Asserts that the <see cref="T:System.Guid"/> is <see cref="F:System.Guid.Empty"/>. | |
2161 </summary> | |
2162 </member> | |
2163 <member name="M:FluentAssertions.Assertions.GuidAssertions.BeEmpty(System.String,System.Object[])"> | |
2164 <summary> | |
2165 Asserts that the <see cref="T:System.Guid"/> is <see cref="F:System.Guid.Empty"/>. | |
2166 </summary> | |
2167 <param name="reason"> | |
2168 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2169 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2170 </param> | |
2171 <param name="reasonArgs"> | |
2172 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2173 </param> | |
2174 </member> | |
2175 <member name="M:FluentAssertions.Assertions.GuidAssertions.NotBeEmpty"> | |
2176 <summary> | |
2177 Asserts that the <see cref="T:System.Guid"/> is not <see cref="F:System.Guid.Empty"/>. | |
2178 </summary> | |
2179 </member> | |
2180 <member name="M:FluentAssertions.Assertions.GuidAssertions.NotBeEmpty(System.String,System.Object[])"> | |
2181 <summary> | |
2182 Asserts that the <see cref="T:System.Guid"/> is not <see cref="F:System.Guid.Empty"/>. | |
2183 </summary> | |
2184 <param name="reason"> | |
2185 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2186 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2187 </param> | |
2188 <param name="reasonArgs"> | |
2189 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2190 </param> | |
2191 </member> | |
2192 <member name="M:FluentAssertions.Assertions.GuidAssertions.Be(System.Guid)"> | |
2193 <summary> | |
2194 Asserts that the <see cref="T:System.Guid"/> is equal to the <paramref name="expected"/> GUID. | |
2195 </summary> | |
2196 <param name="expected">The expected value to compare the actual value with.</param> | |
2197 </member> | |
2198 <member name="M:FluentAssertions.Assertions.GuidAssertions.Be(System.String)"> | |
2199 <summary> | |
2200 Asserts that the <see cref="T:System.Guid"/> is equal to the <paramref name="expected"/> GUID. | |
2201 </summary> | |
2202 <param name="expected">The expected <see cref="T:System.String"/> value to compare the actual value with.</param> | |
2203 </member> | |
2204 <member name="M:FluentAssertions.Assertions.GuidAssertions.Be(System.String,System.String,System.Object[])"> | |
2205 <summary> | |
2206 Asserts that the <see cref="T:System.Guid"/> is equal to the <paramref name="expected"/> GUID. | |
2207 </summary> | |
2208 <param name="expected">The expected <see cref="T:System.String"/> value to compare the actual value with.</param> | |
2209 <param name="reason"> | |
2210 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2211 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2212 </param> | |
2213 <param name="reasonArgs"> | |
2214 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2215 </param> | |
2216 </member> | |
2217 <member name="M:FluentAssertions.Assertions.GuidAssertions.Be(System.Guid,System.String,System.Object[])"> | |
2218 <summary> | |
2219 Asserts that the <see cref="T:System.Guid"/> is equal to the <paramref name="expected"/> GUID. | |
2220 </summary> | |
2221 <param name="expected">The expected value to compare the actual value with.</param> | |
2222 <param name="reason"> | |
2223 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2224 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2225 </param> | |
2226 <param name="reasonArgs"> | |
2227 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2228 </param> | |
2229 </member> | |
2230 <member name="M:FluentAssertions.Assertions.GuidAssertions.NotBe(System.Guid)"> | |
2231 <summary> | |
2232 Asserts that the <see cref="T:System.Guid"/> is not equal to the <paramref name="unexpected"/> GUID. | |
2233 </summary> | |
2234 <param name="unexpected">The unexpected value to compare the actual value with.</param> | |
2235 </member> | |
2236 <member name="M:FluentAssertions.Assertions.GuidAssertions.NotBe(System.Guid,System.String,System.Object[])"> | |
2237 <summary> | |
2238 Asserts that the <see cref="T:System.Guid"/> is not equal to the <paramref name="unexpected"/> GUID. | |
2239 </summary> | |
2240 <param name="unexpected">The unexpected value to compare the actual value with.</param> | |
2241 <param name="reason"> | |
2242 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2243 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2244 </param> | |
2245 <param name="reasonArgs"> | |
2246 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2247 </param> | |
2248 </member> | |
2249 <member name="P:FluentAssertions.Assertions.GuidAssertions.Subject"> | |
2250 <summary> | |
2251 Gets the object which value is being asserted. | |
2252 </summary> | |
2253 </member> | |
2254 <member name="T:FluentAssertions.Assertions.IntegralAssertions`1"> | |
2255 <summary> | |
2256 Contains a number of methods to assert that an integral number is in the correct state. | |
2257 </summary> | |
2258 </member> | |
2259 <member name="T:FluentAssertions.Assertions.NumericAssertions`1"> | |
2260 <summary> | |
2261 Contains a number of methods to assert that an <see cref="T:System.IComparable"/> is in the expected state. | |
2262 </summary> | |
2263 </member> | |
2264 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BePositive"> | |
2265 <summary> | |
2266 Asserts that the numeric value is greater than or equal to zero. | |
2267 </summary> | |
2268 </member> | |
2269 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BePositive(System.String,System.Object[])"> | |
2270 <summary> | |
2271 Asserts that the numeric value is greater than or equal to zero. | |
2272 </summary> | |
2273 <param name="reason"> | |
2274 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2275 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2276 </param> | |
2277 <param name="reasonArgs"> | |
2278 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2279 </param> | |
2280 </member> | |
2281 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeNegative"> | |
2282 <summary> | |
2283 Asserts that the numeric value is less than zero. | |
2284 </summary> | |
2285 </member> | |
2286 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeNegative(System.String,System.Object[])"> | |
2287 <summary> | |
2288 Asserts that the numeric value is less than zero. | |
2289 </summary> | |
2290 <param name="reason"> | |
2291 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2292 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2293 </param> | |
2294 <param name="reasonArgs"> | |
2295 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2296 </param> | |
2297 </member> | |
2298 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeLessThan(`0)"> | |
2299 <summary> | |
2300 Asserts that the numeric value is less than the specified <paramref name="expected"/> value. | |
2301 </summary> | |
2302 <param name="expected">The value to compare the current numeric value with.</param> | |
2303 </member> | |
2304 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeLessThan(`0,System.String,System.Object[])"> | |
2305 <summary> | |
2306 Asserts that the numeric value is less than the specified <paramref name="expected"/> value. | |
2307 </summary> | |
2308 <param name="expected">The value to compare the current numeric value with.</param> | |
2309 <param name="reason"> | |
2310 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2311 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2312 </param> | |
2313 <param name="reasonArgs"> | |
2314 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2315 </param> | |
2316 </member> | |
2317 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeLessOrEqualTo(`0)"> | |
2318 <summary> | |
2319 Asserts that the numeric value is less than or equal to the specified <paramref name="expected"/> value. | |
2320 </summary> | |
2321 <param name="expected">The value to compare the current numeric value with.</param> | |
2322 </member> | |
2323 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeLessOrEqualTo(`0,System.String,System.Object[])"> | |
2324 <summary> | |
2325 Asserts that the numeric value is less than or equal to the specified <paramref name="expected"/> value. | |
2326 </summary> | |
2327 <param name="expected">The value to compare the current numeric value with.</param> | |
2328 <param name="reason"> | |
2329 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2330 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2331 </param> | |
2332 <param name="reasonArgs"> | |
2333 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2334 </param> | |
2335 </member> | |
2336 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeGreaterThan(`0)"> | |
2337 <summary> | |
2338 Asserts that the numeric value is greater than the specified <paramref name="expected"/> value. | |
2339 </summary> | |
2340 <param name="expected">The value to compare the current numeric value with.</param> | |
2341 </member> | |
2342 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeGreaterThan(`0,System.String,System.Object[])"> | |
2343 <summary> | |
2344 Asserts that the numeric value is greater than the specified <paramref name="expected"/> value. | |
2345 </summary> | |
2346 <param name="expected">The value to compare the current numeric value with.</param> | |
2347 <param name="reason"> | |
2348 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2349 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2350 </param> | |
2351 <param name="reasonArgs"> | |
2352 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2353 </param> | |
2354 </member> | |
2355 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeGreaterOrEqualTo(`0)"> | |
2356 <summary> | |
2357 Asserts that the numeric value is greater than or equal to the specified <paramref name="expected"/> value. | |
2358 </summary> | |
2359 <param name="expected">The value to compare the current numeric value with.</param> | |
2360 </member> | |
2361 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeGreaterOrEqualTo(`0,System.String,System.Object[])"> | |
2362 <summary> | |
2363 Asserts that the numeric value is greater than or equal to the specified <paramref name="expected"/> value. | |
2364 </summary> | |
2365 <param name="expected">The value to compare the current numeric value with.</param> | |
2366 <param name="reason"> | |
2367 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2368 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2369 </param> | |
2370 <param name="reasonArgs"> | |
2371 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2372 </param> | |
2373 </member> | |
2374 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeInRange(`0,`0)"> | |
2375 <summary> | |
2376 Asserts that a value is within a range. | |
2377 </summary> | |
2378 <remarks> | |
2379 Where the range is continuous or incremental depends on the actual type of the value. | |
2380 </remarks> | |
2381 <param name="minimumValue"> | |
2382 The minimum valid value of the range. | |
2383 </param> | |
2384 <param name="maximumValue"> | |
2385 The maximum valid value of the range. | |
2386 </param> | |
2387 </member> | |
2388 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeInRange(`0,`0,System.String,System.Object[])"> | |
2389 <summary> | |
2390 Asserts that a value is within a range. | |
2391 </summary> | |
2392 <remarks> | |
2393 Where the range is continuous or incremental depends on the actual type of the value. | |
2394 </remarks> | |
2395 <param name="minimumValue"> | |
2396 The minimum valid value of the range. | |
2397 </param> | |
2398 <param name="maximumValue"> | |
2399 The maximum valid value of the range. | |
2400 </param> | |
2401 <param name="reason"> | |
2402 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2403 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2404 </param> | |
2405 <param name="reasonArgs"> | |
2406 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2407 </param> | |
2408 </member> | |
2409 <member name="M:FluentAssertions.Assertions.IntegralAssertions`1.Be(`0)"> | |
2410 <summary> | |
2411 Asserts that the integral number value is exactly the same as the <paramref name="expected"/> value. | |
2412 </summary> | |
2413 <param name="expected">The expected value.</param> | |
2414 </member> | |
2415 <member name="M:FluentAssertions.Assertions.IntegralAssertions`1.Be(`0,System.String,System.Object[])"> | |
2416 <summary> | |
2417 Asserts that the integral number value is exactly the same as the <paramref name="expected"/> value. | |
2418 </summary> | |
2419 <param name="expected">The expected value.</param> | |
2420 <param name="reason"> | |
2421 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2422 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2423 </param> | |
2424 <param name="reasonArgs"> | |
2425 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2426 </param> | |
2427 </member> | |
2428 <member name="M:FluentAssertions.Assertions.IntegralAssertions`1.NotBe(`0)"> | |
2429 <summary> | |
2430 Asserts that the integral number value is not the same as the <paramref name="unexpected"/> value. | |
2431 </summary> | |
2432 <param name="unexpected">The unexpected value.</param> | |
2433 </member> | |
2434 <member name="M:FluentAssertions.Assertions.IntegralAssertions`1.NotBe(`0,System.String,System.Object[])"> | |
2435 <summary> | |
2436 Asserts that the integral number value is not the same as the <paramref name="unexpected"/> value. | |
2437 </summary> | |
2438 <param name="unexpected">The unexpected value.</param> | |
2439 <param name="reason"> | |
2440 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2441 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2442 </param> | |
2443 <param name="reasonArgs"> | |
2444 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2445 </param> | |
2446 </member> | |
2447 <member name="T:FluentAssertions.Assertions.MethodInfoAssertions"> | |
2448 <summary> | |
2449 Contains assertions for the <see cref="T:System.Reflection.MethodInfo"/> objects returned by the parent <see cref="T:FluentAssertions.Assertions.MethodInfoSelector"/>. | |
2450 </summary> | |
2451 </member> | |
2452 <member name="M:FluentAssertions.Assertions.MethodInfoAssertions.#ctor(System.Collections.Generic.IEnumerable{System.Reflection.MethodInfo})"> | |
2453 <summary> | |
2454 Initializes a new instance of the <see cref="T:FluentAssertions.Assertions.MethodInfoAssertions"/> class. | |
2455 </summary> | |
2456 <param name="methods">The methods.</param> | |
2457 </member> | |
2458 <member name="M:FluentAssertions.Assertions.MethodInfoAssertions.BeVirtual"> | |
2459 <summary> | |
2460 Asserts that the selected methods are virtual. | |
2461 </summary> | |
2462 </member> | |
2463 <member name="M:FluentAssertions.Assertions.MethodInfoAssertions.BeVirtual(System.String,System.Object[])"> | |
2464 <summary> | |
2465 Asserts that the selected methods are virtual. | |
2466 </summary> | |
2467 <param name="reason"> | |
2468 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2469 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2470 </param> | |
2471 <param name="reasonArgs"> | |
2472 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2473 </param> | |
2474 </member> | |
2475 <member name="M:FluentAssertions.Assertions.MethodInfoAssertions.BeDecoratedWith``1"> | |
2476 <summary> | |
2477 Asserts that the selected methods are decorated with the specified <typeparamref name="TAttribute"/>. | |
2478 </summary> | |
2479 </member> | |
2480 <member name="M:FluentAssertions.Assertions.MethodInfoAssertions.BeDecoratedWith``1(System.String,System.Object[])"> | |
2481 <summary> | |
2482 Asserts that the selected methods are decorated with the specified <typeparamref name="TAttribute"/>. | |
2483 </summary> | |
2484 <param name="reason"> | |
2485 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2486 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2487 </param> | |
2488 <param name="reasonArgs"> | |
2489 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2490 </param> | |
2491 </member> | |
2492 <member name="P:FluentAssertions.Assertions.MethodInfoAssertions.SubjectMethods"> | |
2493 <summary> | |
2494 Gets the object which value is being asserted. | |
2495 </summary> | |
2496 </member> | |
2497 <member name="T:FluentAssertions.Assertions.MethodInfoSelector"> | |
2498 <summary> | |
2499 Allows for fluent selection of methods of a type through reflection. | |
2500 </summary> | |
2501 </member> | |
2502 <member name="M:FluentAssertions.Assertions.MethodInfoSelector.#ctor(System.Type)"> | |
2503 <summary> | |
2504 Initializes a new instance of the <see cref="T:FluentAssertions.Assertions.MethodInfoSelector"/> class. | |
2505 </summary> | |
2506 <param name="type">The type from which to select methods.</param> | |
2507 </member> | |
2508 <member name="M:FluentAssertions.Assertions.MethodInfoSelector.#ctor(System.Collections.Generic.IEnumerable{System.Type})"> | |
2509 <summary> | |
2510 Initializes a new instance of the <see cref="T:FluentAssertions.Assertions.MethodInfoSelector"/> class. | |
2511 </summary> | |
2512 <param name="types">The types from which to select methods.</param> | |
2513 </member> | |
2514 <member name="M:FluentAssertions.Assertions.MethodInfoSelector.ThatReturn``1"> | |
2515 <summary> | |
2516 Only select the methods that return the specified type | |
2517 </summary> | |
2518 </member> | |
2519 <member name="M:FluentAssertions.Assertions.MethodInfoSelector.ThatAreDecoratedWith``1"> | |
2520 <summary> | |
2521 Only select the methods that are decorated with an attribute of the specified type. | |
2522 </summary> | |
2523 </member> | |
2524 <member name="M:FluentAssertions.Assertions.MethodInfoSelector.ToArray"> | |
2525 <summary> | |
2526 The resulting <see cref="T:System.Reflection.MethodInfo"/> objects. | |
2527 </summary> | |
2528 </member> | |
2529 <member name="M:FluentAssertions.Assertions.MethodInfoSelector.HasSpecialName(System.Reflection.MethodInfo)"> | |
2530 <summary> | |
2531 Determines whether the specified method has a special name (like properties and events). | |
2532 </summary> | |
2533 </member> | |
2534 <member name="M:FluentAssertions.Assertions.MethodInfoSelector.GetEnumerator"> | |
2535 <summary> | |
2536 Returns an enumerator that iterates through the collection. | |
2537 </summary> | |
2538 <returns> | |
2539 A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection. | |
2540 </returns> | |
2541 <filterpriority>1</filterpriority> | |
2542 </member> | |
2543 <member name="M:FluentAssertions.Assertions.MethodInfoSelector.System#Collections#IEnumerable#GetEnumerator"> | |
2544 <summary> | |
2545 Returns an enumerator that iterates through a collection. | |
2546 </summary> | |
2547 <returns> | |
2548 An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection. | |
2549 </returns> | |
2550 <filterpriority>2</filterpriority> | |
2551 </member> | |
2552 <member name="P:FluentAssertions.Assertions.MethodInfoSelector.ThatArePublicOrInternal"> | |
2553 <summary> | |
2554 Only select the methods that are public or internal. | |
2555 </summary> | |
2556 </member> | |
2557 <member name="P:FluentAssertions.Assertions.MethodInfoSelector.ThatReturnVoid"> | |
2558 <summary> | |
2559 Only select the methods without a return value | |
2560 </summary> | |
2561 </member> | |
2562 <member name="T:FluentAssertions.Assertions.NonGenericCollectionAssertions"> | |
2563 <summary> | |
2564 Contains a number of methods to assert that an <see cref="T:System.Collections.IEnumerable"/> is in the expected state. | |
2565 </summary> | |
2566 </member> | |
2567 <member name="M:FluentAssertions.Assertions.NonGenericCollectionAssertions.Contain(System.Object)"> | |
2568 <summary> | |
2569 Asserts that the current collection contains the specified <paramref name="expected"/> object. Elements are compared | |
2570 using their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
2571 </summary> | |
2572 <param name="expected">An object, or <see cref="T:System.Collections.IEnumerable"/> of objects that are expected to be in the collection.</param> | |
2573 </member> | |
2574 <member name="M:FluentAssertions.Assertions.NonGenericCollectionAssertions.Contain(System.Object,System.String,System.Object[])"> | |
2575 <summary> | |
2576 Asserts that the current collection contains the specified <paramref name="expected"/> object. Elements are compared | |
2577 using their <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
2578 </summary> | |
2579 <param name="expected">An object, or <see cref="T:System.Collections.IEnumerable"/> of objects that are expected to be in the collection.</param> | |
2580 <param name="reason"> | |
2581 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2582 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2583 </param> | |
2584 <param name="reasonArgs"> | |
2585 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2586 </param> | |
2587 </member> | |
2588 <member name="T:FluentAssertions.Assertions.NullableBooleanAssertions"> | |
2589 <summary> | |
2590 Contains a number of methods to assert that a nullable <see cref="T:System.Boolean"/> is in the expected state. | |
2591 </summary> | |
2592 </member> | |
2593 <member name="M:FluentAssertions.Assertions.NullableBooleanAssertions.HaveValue"> | |
2594 <summary> | |
2595 Asserts that a nullable boolean value is not <c>null</c>. | |
2596 </summary> | |
2597 </member> | |
2598 <member name="M:FluentAssertions.Assertions.NullableBooleanAssertions.HaveValue(System.String,System.Object[])"> | |
2599 <summary> | |
2600 Asserts that a nullable boolean value is not <c>null</c>. | |
2601 </summary> | |
2602 <param name="reason"> | |
2603 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2604 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2605 </param> | |
2606 <param name="reasonArgs"> | |
2607 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2608 </param> | |
2609 </member> | |
2610 <member name="M:FluentAssertions.Assertions.NullableBooleanAssertions.NotHaveValue"> | |
2611 <summary> | |
2612 Asserts that a nullable boolean value is <c>null</c>. | |
2613 </summary> | |
2614 </member> | |
2615 <member name="M:FluentAssertions.Assertions.NullableBooleanAssertions.NotHaveValue(System.String,System.Object[])"> | |
2616 <summary> | |
2617 Asserts that a nullable boolean value is <c>null</c>. | |
2618 </summary> | |
2619 <param name="reason"> | |
2620 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2621 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2622 </param> | |
2623 <param name="reasonArgs"> | |
2624 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2625 </param> | |
2626 </member> | |
2627 <member name="M:FluentAssertions.Assertions.NullableBooleanAssertions.Be(System.Nullable{System.Boolean})"> | |
2628 <summary> | |
2629 Asserts that the value is equal to the specified <paramref name="expected"/> value. | |
2630 </summary> | |
2631 <param name="expected">The expected value</param> | |
2632 </member> | |
2633 <member name="M:FluentAssertions.Assertions.NullableBooleanAssertions.Be(System.Nullable{System.Boolean},System.String,System.Object[])"> | |
2634 <summary> | |
2635 Asserts that the value is equal to the specified <paramref name="expected"/> value. | |
2636 </summary> | |
2637 <param name="expected">The expected value</param> | |
2638 <param name="reason"> | |
2639 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2640 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2641 </param> | |
2642 <param name="reasonArgs"> | |
2643 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2644 </param> | |
2645 </member> | |
2646 <member name="T:FluentAssertions.Assertions.NullableDateTimeAssertions"> | |
2647 <summary> | |
2648 Contains a number of methods to assert that a nullable <see cref="T:System.DateTime"/> is in the expected state. | |
2649 </summary> | |
2650 <remarks> | |
2651 You can use the <see cref="T:FluentAssertions.Common.FluentDateTimeExtensions"/> for a more fluent way of specifying a <see cref="T:System.DateTime"/>. | |
2652 </remarks> | |
2653 </member> | |
2654 <member name="M:FluentAssertions.Assertions.NullableDateTimeAssertions.HaveValue"> | |
2655 <summary> | |
2656 Asserts that a nullable <see cref="T:System.DateTime"/> value is not <c>null</c>. | |
2657 </summary> | |
2658 </member> | |
2659 <member name="M:FluentAssertions.Assertions.NullableDateTimeAssertions.HaveValue(System.String,System.Object[])"> | |
2660 <summary> | |
2661 Asserts that a nullable <see cref="T:System.DateTime"/> value is not <c>null</c>. | |
2662 </summary> | |
2663 <param name="reason"> | |
2664 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2665 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2666 </param> | |
2667 <param name="reasonArgs"> | |
2668 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2669 </param> | |
2670 </member> | |
2671 <member name="M:FluentAssertions.Assertions.NullableDateTimeAssertions.NotHaveValue"> | |
2672 <summary> | |
2673 Asserts that a nullable <see cref="T:System.DateTime"/> value is <c>null</c>. | |
2674 </summary> | |
2675 </member> | |
2676 <member name="M:FluentAssertions.Assertions.NullableDateTimeAssertions.NotHaveValue(System.String,System.Object[])"> | |
2677 <summary> | |
2678 Asserts that a nullable <see cref="T:System.DateTime"/> value is <c>null</c>. | |
2679 </summary> | |
2680 <param name="reason"> | |
2681 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2682 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2683 </param> | |
2684 <param name="reasonArgs"> | |
2685 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2686 </param> | |
2687 </member> | |
2688 <member name="M:FluentAssertions.Assertions.NullableDateTimeAssertions.Be(System.Nullable{System.DateTime})"> | |
2689 <summary> | |
2690 Asserts that the value is equal to the specified <paramref name="expected"/> value. | |
2691 </summary> | |
2692 <param name="expected">The expected value</param> | |
2693 </member> | |
2694 <member name="M:FluentAssertions.Assertions.NullableDateTimeAssertions.Be(System.Nullable{System.DateTime},System.String,System.Object[])"> | |
2695 <summary> | |
2696 Asserts that the value is equal to the specified <paramref name="expected"/> value. | |
2697 </summary> | |
2698 <param name="expected">The expected value</param> | |
2699 <param name="reason"> | |
2700 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2701 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2702 </param> | |
2703 <param name="reasonArgs"> | |
2704 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2705 </param> | |
2706 </member> | |
2707 <member name="T:FluentAssertions.Assertions.NullableGuidAssertions"> | |
2708 <summary> | |
2709 Contains a number of methods to assert that a nullable <see cref="T:System.Guid"/> is in the expected state. | |
2710 </summary> | |
2711 </member> | |
2712 <member name="M:FluentAssertions.Assertions.NullableGuidAssertions.HaveValue"> | |
2713 <summary> | |
2714 Asserts that a nullable <see cref="T:System.Guid"/> value is not <c>null</c>. | |
2715 </summary> | |
2716 </member> | |
2717 <member name="M:FluentAssertions.Assertions.NullableGuidAssertions.HaveValue(System.String,System.Object[])"> | |
2718 <summary> | |
2719 Asserts that a nullable <see cref="T:System.Guid"/> value is not <c>null</c>. | |
2720 </summary> | |
2721 <param name="reason"> | |
2722 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2723 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2724 </param> | |
2725 <param name="reasonArgs"> | |
2726 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2727 </param> | |
2728 </member> | |
2729 <member name="M:FluentAssertions.Assertions.NullableGuidAssertions.NotHaveValue"> | |
2730 <summary> | |
2731 Asserts that a nullable <see cref="T:System.Guid"/> value is <c>null</c>. | |
2732 </summary> | |
2733 </member> | |
2734 <member name="M:FluentAssertions.Assertions.NullableGuidAssertions.NotHaveValue(System.String,System.Object[])"> | |
2735 <summary> | |
2736 Asserts that a nullable <see cref="T:System.Guid"/> value is <c>null</c>. | |
2737 </summary> | |
2738 <param name="reason"> | |
2739 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2740 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2741 </param> | |
2742 <param name="reasonArgs"> | |
2743 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2744 </param> | |
2745 </member> | |
2746 <member name="M:FluentAssertions.Assertions.NullableGuidAssertions.Be(System.Nullable{System.Guid})"> | |
2747 <summary> | |
2748 Asserts that the value is equal to the specified <paramref name="expected"/> value. | |
2749 </summary> | |
2750 <param name="expected">The expected value</param> | |
2751 </member> | |
2752 <member name="M:FluentAssertions.Assertions.NullableGuidAssertions.Be(System.Nullable{System.Guid},System.String,System.Object[])"> | |
2753 <summary> | |
2754 Asserts that the value is equal to the specified <paramref name="expected"/> value. | |
2755 </summary> | |
2756 <param name="expected">The expected value</param> | |
2757 <param name="reason"> | |
2758 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2759 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2760 </param> | |
2761 <param name="reasonArgs"> | |
2762 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2763 </param> | |
2764 </member> | |
2765 <member name="T:FluentAssertions.Assertions.NullableNumericExtensions"> | |
2766 <summary> | |
2767 Contains a number of methods to assert that a nullable numeric value has the expected value. | |
2768 </summary> | |
2769 </member> | |
2770 <member name="M:FluentAssertions.Assertions.NullableNumericExtensions.HaveValue``1(FluentAssertions.Assertions.NumericAssertions{System.Nullable{``0}})"> | |
2771 <summary> | |
2772 Asserts that a nullable numeric value is not <c>null</c>. | |
2773 </summary> | |
2774 </member> | |
2775 <member name="M:FluentAssertions.Assertions.NullableNumericExtensions.HaveValue``1(FluentAssertions.Assertions.NumericAssertions{System.Nullable{``0}},System.String,System.Object[])"> | |
2776 <summary> | |
2777 Asserts that a nullable numeric value is not <c>null</c>. | |
2778 </summary> | |
2779 <param name="reason"> | |
2780 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2781 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2782 </param> | |
2783 <param name="reasonArgs"> | |
2784 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2785 </param> | |
2786 </member> | |
2787 <member name="M:FluentAssertions.Assertions.NullableNumericExtensions.NotHaveValue``1(FluentAssertions.Assertions.NumericAssertions{System.Nullable{``0}})"> | |
2788 <summary> | |
2789 Asserts that a nullable numeric value is <c>null</c>. | |
2790 </summary> | |
2791 </member> | |
2792 <member name="M:FluentAssertions.Assertions.NullableNumericExtensions.NotHaveValue``1(FluentAssertions.Assertions.NumericAssertions{System.Nullable{``0}},System.String,System.Object[])"> | |
2793 <summary> | |
2794 Asserts that a nullable numeric value is <c>null</c>. | |
2795 </summary> | |
2796 <param name="reason"> | |
2797 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2798 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2799 </param> | |
2800 <param name="reasonArgs"> | |
2801 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2802 </param> | |
2803 </member> | |
2804 <member name="T:FluentAssertions.Assertions.NullableSimpleTimeSpanAssertions"> | |
2805 <summary> | |
2806 Contains a number of methods to assert that a nullable <see cref="T:System.TimeSpan"/> is in the expected state. | |
2807 </summary> | |
2808 <remarks> | |
2809 You can use the <see cref="T:FluentAssertions.Common.TimeSpanConversionExtensions"/> for a more fluent way of specifying a <see cref="T:System.TimeSpan"/>. | |
2810 </remarks> | |
2811 </member> | |
2812 <member name="T:FluentAssertions.Assertions.SimpleTimeSpanAssertions"> | |
2813 <summary> | |
2814 Contains a number of methods to assert that a nullable <see cref="T:System.TimeSpan"/> is in the expected state. | |
2815 </summary> | |
2816 </member> | |
2817 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BePositive"> | |
2818 <summary> | |
2819 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is greater than zero. | |
2820 </summary> | |
2821 </member> | |
2822 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BePositive(System.String,System.Object[])"> | |
2823 <summary> | |
2824 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is greater than zero. | |
2825 </summary> | |
2826 <param name="reason"> | |
2827 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2828 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2829 </param> | |
2830 <param name="reasonArgs"> | |
2831 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2832 </param> | |
2833 </member> | |
2834 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BeNegative"> | |
2835 <summary> | |
2836 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is less than zero. | |
2837 </summary> | |
2838 </member> | |
2839 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BeNegative(System.String,System.Object[])"> | |
2840 <summary> | |
2841 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is less than zero. | |
2842 </summary> | |
2843 <param name="reason"> | |
2844 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2845 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2846 </param> | |
2847 <param name="reasonArgs"> | |
2848 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2849 </param> | |
2850 </member> | |
2851 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.Be(System.TimeSpan)"> | |
2852 <summary> | |
2853 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is equal to the | |
2854 specified <paramref name="expected"/> time. | |
2855 </summary> | |
2856 <param name="expected">The expected time difference</param> | |
2857 </member> | |
2858 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.Be(System.TimeSpan,System.String,System.Object[])"> | |
2859 <summary> | |
2860 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is equal to the | |
2861 specified <paramref name="expected"/> time. | |
2862 </summary> | |
2863 <param name="expected">The expected time difference</param> | |
2864 <param name="reason"> | |
2865 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2866 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2867 </param> | |
2868 <param name="reasonArgs"> | |
2869 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2870 </param> | |
2871 </member> | |
2872 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.NotBe(System.TimeSpan)"> | |
2873 <summary> | |
2874 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is not equal to the | |
2875 specified <paramref name="unexpected"/> time. | |
2876 </summary> | |
2877 <param name="unexpected">The unexpected time difference</param> | |
2878 </member> | |
2879 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.NotBe(System.TimeSpan,System.String,System.Object[])"> | |
2880 <summary> | |
2881 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is not equal to the | |
2882 specified <paramref name="unexpected"/> time. | |
2883 </summary> | |
2884 <param name="unexpected">The unexpected time difference</param> | |
2885 <param name="reason"> | |
2886 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2887 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2888 </param> | |
2889 <param name="reasonArgs"> | |
2890 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2891 </param> | |
2892 </member> | |
2893 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BeLessThan(System.TimeSpan)"> | |
2894 <summary> | |
2895 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is less than the | |
2896 specified <paramref name="expected"/> time. | |
2897 </summary> | |
2898 <param name="expected">The time difference to which the current value will be compared</param> | |
2899 </member> | |
2900 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BeLessThan(System.TimeSpan,System.String,System.Object[])"> | |
2901 <summary> | |
2902 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is less than the | |
2903 specified <paramref name="expected"/> time. | |
2904 </summary> | |
2905 <param name="expected">The time difference to which the current value will be compared</param> | |
2906 <param name="reason"> | |
2907 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2908 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2909 </param> | |
2910 <param name="reasonArgs"> | |
2911 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2912 </param> | |
2913 </member> | |
2914 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BeLessOrEqualTo(System.TimeSpan)"> | |
2915 <summary> | |
2916 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is less than or equal to the | |
2917 specified <paramref name="expected"/> time. | |
2918 </summary> | |
2919 <param name="expected">The time difference to which the current value will be compared</param> | |
2920 </member> | |
2921 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BeLessOrEqualTo(System.TimeSpan,System.String,System.Object[])"> | |
2922 <summary> | |
2923 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is less than or equal to the | |
2924 specified <paramref name="expected"/> time. | |
2925 </summary> | |
2926 <param name="expected">The time difference to which the current value will be compared</param> | |
2927 <param name="reason"> | |
2928 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2929 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2930 </param> | |
2931 <param name="reasonArgs"> | |
2932 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2933 </param> | |
2934 </member> | |
2935 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BeGreaterThan(System.TimeSpan)"> | |
2936 <summary> | |
2937 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is greater than the | |
2938 specified <paramref name="expected"/> time. | |
2939 </summary> | |
2940 <param name="expected">The time difference to which the current value will be compared</param> | |
2941 </member> | |
2942 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BeGreaterThan(System.TimeSpan,System.String,System.Object[])"> | |
2943 <summary> | |
2944 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is greater than the | |
2945 specified <paramref name="expected"/> time. | |
2946 </summary> | |
2947 <param name="expected">The time difference to which the current value will be compared</param> | |
2948 <param name="reason"> | |
2949 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2950 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2951 </param> | |
2952 <param name="reasonArgs"> | |
2953 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2954 </param> | |
2955 </member> | |
2956 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BeGreaterOrEqualTo(System.TimeSpan)"> | |
2957 <summary> | |
2958 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is greater than or equal to the | |
2959 specified <paramref name="expected"/> time. | |
2960 </summary> | |
2961 <param name="expected">The time difference to which the current value will be compared</param> | |
2962 </member> | |
2963 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BeGreaterOrEqualTo(System.TimeSpan,System.String,System.Object[])"> | |
2964 <summary> | |
2965 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is greater than or equal to the | |
2966 specified <paramref name="expected"/> time. | |
2967 </summary> | |
2968 <param name="expected">The time difference to which the current value will be compared</param> | |
2969 <param name="reason"> | |
2970 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2971 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2972 </param> | |
2973 <param name="reasonArgs"> | |
2974 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2975 </param> | |
2976 </member> | |
2977 <member name="P:FluentAssertions.Assertions.SimpleTimeSpanAssertions.Subject"> | |
2978 <summary> | |
2979 Gets the object which value is being asserted. | |
2980 </summary> | |
2981 </member> | |
2982 <member name="M:FluentAssertions.Assertions.NullableSimpleTimeSpanAssertions.HaveValue"> | |
2983 <summary> | |
2984 Asserts that a nullable <see cref="T:System.TimeSpan"/> value is not <c>null</c>. | |
2985 </summary> | |
2986 </member> | |
2987 <member name="M:FluentAssertions.Assertions.NullableSimpleTimeSpanAssertions.HaveValue(System.String,System.Object[])"> | |
2988 <summary> | |
2989 Asserts that a nullable <see cref="T:System.TimeSpan"/> value is not <c>null</c>. | |
2990 </summary> | |
2991 <param name="reason"> | |
2992 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
2993 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
2994 </param> | |
2995 <param name="reasonArgs"> | |
2996 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
2997 </param> | |
2998 </member> | |
2999 <member name="M:FluentAssertions.Assertions.NullableSimpleTimeSpanAssertions.NotHaveValue"> | |
3000 <summary> | |
3001 Asserts that a nullable <see cref="T:System.TimeSpan"/> value is <c>null</c>. | |
3002 </summary> | |
3003 </member> | |
3004 <member name="M:FluentAssertions.Assertions.NullableSimpleTimeSpanAssertions.NotHaveValue(System.String,System.Object[])"> | |
3005 <summary> | |
3006 Asserts that a nullable <see cref="T:System.TimeSpan"/> value is <c>null</c>. | |
3007 </summary> | |
3008 <param name="reason"> | |
3009 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3010 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3011 </param> | |
3012 <param name="reasonArgs"> | |
3013 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3014 </param> | |
3015 </member> | |
3016 <member name="T:FluentAssertions.Assertions.ObjectAssertions"> | |
3017 <summary> | |
3018 Contains a number of methods to assert that an <see cref="T:System.Object"/> is in the expected state. | |
3019 </summary> | |
3020 </member> | |
3021 <member name="M:FluentAssertions.Assertions.ObjectAssertions.Be(System.Object)"> | |
3022 <summary> | |
3023 Asserts that the value of an object equals another object when using it's <see cref="M:System.Object.Equals(System.Object)"/> method. | |
3024 </summary> | |
3025 <param name="expected">The expected value</param> | |
3026 </member> | |
3027 <member name="M:FluentAssertions.Assertions.ObjectAssertions.Be(System.Object,System.String,System.Object[])"> | |
3028 <summary> | |
3029 Asserts that an object equals another object using its <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
3030 </summary> | |
3031 <param name="expected">The expected value</param> | |
3032 <param name="reason"> | |
3033 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3034 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3035 </param> | |
3036 <param name="reasonArgs"> | |
3037 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3038 </param> | |
3039 </member> | |
3040 <member name="M:FluentAssertions.Assertions.ObjectAssertions.NotBe(System.Object)"> | |
3041 <summary> | |
3042 Asserts that an object does not equal another object using it's <see cref="M:System.Object.Equals(System.Object)"/> method. | |
3043 </summary> | |
3044 <param name="unexpected">The unexpected value</param> | |
3045 </member> | |
3046 <member name="M:FluentAssertions.Assertions.ObjectAssertions.NotBe(System.Object,System.String,System.Object[])"> | |
3047 <summary> | |
3048 Asserts that an object does not equal another object using it's <see cref="M:System.Object.Equals(System.Object)"/> method. | |
3049 </summary> | |
3050 <param name="unexpected">The unexpected value</param> | |
3051 <param name="reason"> | |
3052 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
3053 start with the word <i>because</i>, it is prepended to the message. | |
3054 </param> | |
3055 <param name="reasonArgs"> | |
3056 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
3057 </param> | |
3058 </member> | |
3059 <member name="M:FluentAssertions.Assertions.ObjectAssertions.BeSameAs(System.Object)"> | |
3060 <summary> | |
3061 Asserts that an object reference refers to the exact same object as another object reference. | |
3062 </summary> | |
3063 <param name="expected">The expected object</param> | |
3064 </member> | |
3065 <member name="M:FluentAssertions.Assertions.ObjectAssertions.BeSameAs(System.Object,System.String,System.Object[])"> | |
3066 <summary> | |
3067 Asserts that an object reference refers to the exact same object as another object reference. | |
3068 </summary> | |
3069 <param name="expected">The expected object</param> | |
3070 <param name="reason"> | |
3071 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
3072 start with the word <i>because</i>, it is prepended to the message. | |
3073 </param> | |
3074 <param name="reasonArgs"> | |
3075 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
3076 </param> | |
3077 </member> | |
3078 <member name="M:FluentAssertions.Assertions.ObjectAssertions.NotBeSameAs(System.Object)"> | |
3079 <summary> | |
3080 Asserts that an object reference refers to a different object than another object reference refers to. | |
3081 </summary> | |
3082 <param name="unexpected">The unexpected object</param> | |
3083 </member> | |
3084 <member name="M:FluentAssertions.Assertions.ObjectAssertions.NotBeSameAs(System.Object,System.String,System.Object[])"> | |
3085 <summary> | |
3086 Asserts that an object reference refers to a different object than another object reference refers to. | |
3087 </summary> | |
3088 <param name="unexpected">The unexpected object</param> | |
3089 <param name="reason"> | |
3090 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
3091 start with the word <i>because</i>, it is prepended to the message. | |
3092 </param> | |
3093 <param name="reasonArgs"> | |
3094 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
3095 </param> | |
3096 </member> | |
3097 <member name="M:FluentAssertions.Assertions.ObjectAssertions.BeNull"> | |
3098 <summary> | |
3099 Asserts that the object is <c>null</c>. | |
3100 </summary> | |
3101 </member> | |
3102 <member name="M:FluentAssertions.Assertions.ObjectAssertions.BeNull(System.String,System.Object[])"> | |
3103 <summary> | |
3104 Asserts that the object is <c>null</c>. | |
3105 </summary> | |
3106 <param name="reason"> | |
3107 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
3108 start with the word <i>because</i>, it is prepended to the message. | |
3109 </param> | |
3110 <param name="reasonArgs"> | |
3111 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
3112 </param> | |
3113 </member> | |
3114 <member name="M:FluentAssertions.Assertions.ObjectAssertions.NotBeNull"> | |
3115 <summary> | |
3116 Asserts that the object is not <c>null</c>. | |
3117 </summary> | |
3118 </member> | |
3119 <member name="M:FluentAssertions.Assertions.ObjectAssertions.NotBeNull(System.String,System.Object[])"> | |
3120 <summary> | |
3121 Asserts that the object is not <c>null</c>. | |
3122 </summary> | |
3123 <param name="reason"> | |
3124 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
3125 start with the word <i>because</i>, it is prepended to the message. | |
3126 </param> | |
3127 <param name="reasonArgs"> | |
3128 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
3129 </param> | |
3130 </member> | |
3131 <member name="M:FluentAssertions.Assertions.ObjectAssertions.BeXmlSerializable"> | |
3132 <summary> | |
3133 Asserts that an object can be serialized and deserialized using the XML serializer and that it stills retains | |
3134 the values of all properties. | |
3135 </summary> | |
3136 </member> | |
3137 <member name="M:FluentAssertions.Assertions.ObjectAssertions.BeXmlSerializable(System.String,System.Object[])"> | |
3138 <summary> | |
3139 Asserts that an object can be serialized and deserialized using the XML serializer and that it stills retains | |
3140 the values of all properties. | |
3141 </summary> | |
3142 <param name="reason"> | |
3143 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3144 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3145 </param> | |
3146 <param name="reasonArgs"> | |
3147 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3148 </param> | |
3149 </member> | |
3150 <member name="T:FluentAssertions.Assertions.PropertyAssertions`1"> | |
3151 <summary> | |
3152 Provides methods for selecting one or more properties of an object and comparing them with another object. | |
3153 </summary> | |
3154 </member> | |
3155 <member name="M:FluentAssertions.Assertions.PropertyAssertions`1.AllProperties"> | |
3156 <summary> | |
3157 Includes all properties of <typeparamref name="T"/> when comparing the subject with another object using <see cref="M:FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(System.Object)"/>. | |
3158 </summary> | |
3159 </member> | |
3160 <member name="M:FluentAssertions.Assertions.PropertyAssertions`1.AllRuntimeProperties"> | |
3161 <summary> | |
3162 Includes all properties of <typeparamref name="T"/> including those of the run-time type when comparing the subject | |
3163 with another object using <see cref="M:FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(System.Object)"/>. | |
3164 </summary> | |
3165 </member> | |
3166 <member name="M:FluentAssertions.Assertions.PropertyAssertions`1.SharedProperties"> | |
3167 <summary> | |
3168 Includes all properties of <typeparamref name="T"/> when comparing the subject with another object using <see cref="M:FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(System.Object)"/>, | |
3169 except those that the other object does not have. | |
3170 </summary> | |
3171 </member> | |
3172 <member name="M:FluentAssertions.Assertions.PropertyAssertions`1.IncludingNestedObjects"> | |
3173 <summary> | |
3174 Perform recursive property comparison of the child properties for objects that are of incompatible type. | |
3175 </summary> | |
3176 </member> | |
3177 <member name="M:FluentAssertions.Assertions.PropertyAssertions`1.AllPropertiesBut(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}}[])"> | |
3178 <summary> | |
3179 Includes all properties of <typeparamref name="T"/> when comparing the subject with another object using <see cref="M:FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(System.Object)"/>, | |
3180 except those specified using a property expression. | |
3181 </summary> | |
3182 <param name="propertyExpression">A single property expression to exclude.</param> | |
3183 <param name="propertyExpressions">Optional list of additional property expressions to exclude.</param> | |
3184 </member> | |
3185 <member name="M:FluentAssertions.Assertions.PropertyAssertions`1.But(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}}[])"> | |
3186 <summary> | |
3187 Excludes the properties specified by the <paramref name="propertyExpression"/> from the comparison. | |
3188 </summary> | |
3189 <param name="propertyExpression">A single property expression to exclude.</param> | |
3190 <param name="propertyExpressions">Optional list of additional property expressions to exclude.</param> | |
3191 </member> | |
3192 <member name="M:FluentAssertions.Assertions.PropertyAssertions`1.Properties(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}}[])"> | |
3193 <summary> | |
3194 Includes only those properties of <typeparamref name="T"/> when comparing the subject with another object using <see cref="M:FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(System.Object)"/> | |
3195 that were specified using a property expression. | |
3196 </summary> | |
3197 <param name="propertyExpression">A single property expression to include.</param> | |
3198 <param name="propertyExpressions">Optional list of additional property expressions to include.</param> | |
3199 </member> | |
3200 <member name="M:FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(System.Object)"> | |
3201 <summary> | |
3202 Asserts that the previously selected properties of <typeparamref name="T"/> have the same value as the equally named | |
3203 properties of <paramref name="otherObject"/>. | |
3204 </summary> | |
3205 <param name="otherObject">The object to compare the current object with</param> | |
3206 <remarks> | |
3207 Property values are considered equal if, after converting them to the requested type, calling <see cref="M:FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(System.Object)"/> | |
3208 returns <c>true</c>. | |
3209 </remarks> | |
3210 </member> | |
3211 <member name="M:FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(System.Object,System.String,System.Object[])"> | |
3212 <summary> | |
3213 Asserts that the previously selected properties of <typeparamref name="T"/> have the same value as the equally named | |
3214 properties of <paramref name="otherObject"/>. | |
3215 </summary> | |
3216 <param name="otherObject">The object to compare the current object with</param> | |
3217 <remarks> | |
3218 Property values are considered equal if, after converting them to the requested type, calling <see cref="M:FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(System.Object)"/> | |
3219 returns <c>true</c>. | |
3220 </remarks> | |
3221 <param name="reason"> | |
3222 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3223 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3224 </param> | |
3225 <param name="reasonArgs"> | |
3226 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3227 </param> | |
3228 </member> | |
3229 <member name="P:FluentAssertions.Assertions.PropertyAssertions`1.Subject"> | |
3230 <summary> | |
3231 Gets the object which value is being asserted. | |
3232 </summary> | |
3233 </member> | |
3234 <member name="T:FluentAssertions.Assertions.PropertyEqualityValidator"> | |
3235 <summary> | |
3236 Is responsible for validating the equality of one or more properties of a subject with another object. | |
3237 </summary> | |
3238 </member> | |
3239 <member name="P:FluentAssertions.Assertions.PropertyEqualityValidator.Properties"> | |
3240 <summary> | |
3241 Contains the properties that should be included when comparing two objects. | |
3242 </summary> | |
3243 </member> | |
3244 <member name="P:FluentAssertions.Assertions.PropertyEqualityValidator.OnlySharedProperties"> | |
3245 <summary> | |
3246 Gets or sets a value indicating whether the validator will ignore properties from the <see cref="P:FluentAssertions.Assertions.PropertyEqualityValidator.Properties"/> | |
3247 collection that the <see cref="!:Other"/> object doesn't have. | |
3248 </summary> | |
3249 </member> | |
3250 <member name="P:FluentAssertions.Assertions.PropertyEqualityValidator.RecurseOnNestedObjects"> | |
3251 <summary> | |
3252 Gets or sets a value indicating whether it should continue comparing (collections of objects) that | |
3253 the <see cref="P:FluentAssertions.Assertions.PropertyEqualityValidator.OtherObject"/> refers to. | |
3254 </summary> | |
3255 </member> | |
3256 <member name="T:FluentAssertions.Assertions.PropertyInfoAssertions"> | |
3257 <summary> | |
3258 Contains assertions for the <see cref="T:System.Reflection.PropertyInfo"/> objects returned by the parent <see cref="T:FluentAssertions.Assertions.PropertyInfoSelector"/>. | |
3259 </summary> | |
3260 </member> | |
3261 <member name="M:FluentAssertions.Assertions.PropertyInfoAssertions.#ctor(System.Collections.Generic.IEnumerable{System.Reflection.PropertyInfo})"> | |
3262 <summary> | |
3263 Initializes a new instance of the <see cref="T:FluentAssertions.Assertions.PropertyInfoAssertions"/> class. | |
3264 </summary> | |
3265 <param name="properties">The properties.</param> | |
3266 </member> | |
3267 <member name="M:FluentAssertions.Assertions.PropertyInfoAssertions.BeVirtual"> | |
3268 <summary> | |
3269 Asserts that the selected properties are virtual. | |
3270 </summary> | |
3271 </member> | |
3272 <member name="M:FluentAssertions.Assertions.PropertyInfoAssertions.BeVirtual(System.String,System.Object[])"> | |
3273 <summary> | |
3274 Asserts that the selected properties are virtual. | |
3275 </summary> | |
3276 <param name="reason"> | |
3277 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3278 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3279 </param> | |
3280 <param name="reasonArgs"> | |
3281 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3282 </param> | |
3283 </member> | |
3284 <member name="M:FluentAssertions.Assertions.PropertyInfoAssertions.BeDecoratedWith``1"> | |
3285 <summary> | |
3286 Asserts that the selected methods are decorated with the specified <typeparamref name="TAttribute"/>. | |
3287 </summary> | |
3288 </member> | |
3289 <member name="M:FluentAssertions.Assertions.PropertyInfoAssertions.BeDecoratedWith``1(System.String,System.Object[])"> | |
3290 <summary> | |
3291 Asserts that the selected methods are decorated with the specified <typeparamref name="TAttribute"/>. | |
3292 </summary> | |
3293 <param name="reason"> | |
3294 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3295 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3296 </param> | |
3297 <param name="reasonArgs"> | |
3298 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3299 </param> | |
3300 </member> | |
3301 <member name="P:FluentAssertions.Assertions.PropertyInfoAssertions.SubjectProperties"> | |
3302 <summary> | |
3303 Gets the object which value is being asserted. | |
3304 </summary> | |
3305 </member> | |
3306 <member name="T:FluentAssertions.Assertions.PropertyInfoSelector"> | |
3307 <summary> | |
3308 Allows for fluent selection of properties of a type through reflection. | |
3309 </summary> | |
3310 </member> | |
3311 <member name="M:FluentAssertions.Assertions.PropertyInfoSelector.#ctor(System.Type)"> | |
3312 <summary> | |
3313 Initializes a new instance of the <see cref="T:FluentAssertions.Assertions.PropertyInfoSelector"/> class. | |
3314 </summary> | |
3315 <param name="type">The type from which to select properties.</param> | |
3316 </member> | |
3317 <member name="M:FluentAssertions.Assertions.PropertyInfoSelector.#ctor(System.Collections.Generic.IEnumerable{System.Type})"> | |
3318 <summary> | |
3319 Initializes a new instance of the <see cref="T:FluentAssertions.Assertions.PropertyInfoSelector"/> class. | |
3320 </summary> | |
3321 <param name="types">The types from which to select properties.</param> | |
3322 </member> | |
3323 <member name="M:FluentAssertions.Assertions.PropertyInfoSelector.ThatAreDecoratedWith``1"> | |
3324 <summary> | |
3325 Only select the properties that are decorated with an attribute of the specified type. | |
3326 </summary> | |
3327 </member> | |
3328 <member name="M:FluentAssertions.Assertions.PropertyInfoSelector.OfType``1"> | |
3329 <summary> | |
3330 Only select the properties that return the specified type | |
3331 </summary> | |
3332 </member> | |
3333 <member name="M:FluentAssertions.Assertions.PropertyInfoSelector.ToArray"> | |
3334 <summary> | |
3335 The resulting <see cref="T:System.Reflection.PropertyInfo"/> objects. | |
3336 </summary> | |
3337 </member> | |
3338 <member name="M:FluentAssertions.Assertions.PropertyInfoSelector.GetEnumerator"> | |
3339 <summary> | |
3340 Returns an enumerator that iterates through the collection. | |
3341 </summary> | |
3342 <returns> | |
3343 A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection. | |
3344 </returns> | |
3345 <filterpriority>1</filterpriority> | |
3346 </member> | |
3347 <member name="M:FluentAssertions.Assertions.PropertyInfoSelector.System#Collections#IEnumerable#GetEnumerator"> | |
3348 <summary> | |
3349 Returns an enumerator that iterates through a collection. | |
3350 </summary> | |
3351 <returns> | |
3352 An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection. | |
3353 </returns> | |
3354 <filterpriority>2</filterpriority> | |
3355 </member> | |
3356 <member name="P:FluentAssertions.Assertions.PropertyInfoSelector.ThatArePublicOrInternal"> | |
3357 <summary> | |
3358 Only select the properties that have a public or internal getter. | |
3359 </summary> | |
3360 </member> | |
3361 <member name="T:FluentAssertions.Assertions.StringAssertions"> | |
3362 <summary> | |
3363 Contains a number of methods to assert that a <see cref="T:System.String"/> is in the expected state. | |
3364 </summary> | |
3365 </member> | |
3366 <member name="M:FluentAssertions.Assertions.StringAssertions.#ctor(System.String)"> | |
3367 <summary> | |
3368 Initializes a new instance of the <see cref="T:System.Object" /> class. | |
3369 </summary> | |
3370 </member> | |
3371 <member name="M:FluentAssertions.Assertions.StringAssertions.Be(System.String)"> | |
3372 <summary> | |
3373 Asserts that a string is equal to another string. | |
3374 </summary> | |
3375 <param name="expected">The expected string.</param> | |
3376 </member> | |
3377 <member name="M:FluentAssertions.Assertions.StringAssertions.Be(System.String,System.String,System.Object[])"> | |
3378 <summary> | |
3379 Asserts that a string is exactly the same as another string, including the casing and any leading or trailing whitespace. | |
3380 </summary> | |
3381 <param name="expected">The expected string.</param> | |
3382 <param name="reason"> | |
3383 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3384 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3385 </param> | |
3386 <param name="reasonArgs"> | |
3387 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3388 </param> | |
3389 </member> | |
3390 <member name="M:FluentAssertions.Assertions.StringAssertions.BeEquivalentTo(System.String)"> | |
3391 <summary> | |
3392 Asserts that a string is exactly the same as another string, including any leading or trailing whitespace, with | |
3393 the exception of the casing. | |
3394 </summary> | |
3395 <param name="expected"> | |
3396 The string that the subject is expected to be equivalent to. | |
3397 </param> | |
3398 </member> | |
3399 <member name="M:FluentAssertions.Assertions.StringAssertions.BeEquivalentTo(System.String,System.String,System.Object[])"> | |
3400 <summary> | |
3401 Asserts that a string is exactly the same as another string, including any leading or trailing whitespace, with | |
3402 the exception of the casing. | |
3403 </summary> | |
3404 <param name="expected"> | |
3405 The string that the subject is expected to be equivalent to. | |
3406 </param> | |
3407 <param name="reason"> | |
3408 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3409 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3410 </param> | |
3411 <param name="reasonArgs"> | |
3412 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3413 </param> | |
3414 </member> | |
3415 <member name="M:FluentAssertions.Assertions.StringAssertions.NotBe(System.String)"> | |
3416 <summary> | |
3417 Asserts that a string is not exactly the same as the specified <paramref name="unexpected"/>, | |
3418 including any leading or trailing whitespace, with the exception of the casing. | |
3419 </summary> | |
3420 <param name="unexpected">The string that the subject is not expected to be equivalent to.</param> | |
3421 </member> | |
3422 <member name="M:FluentAssertions.Assertions.StringAssertions.NotBe(System.String,System.String,System.Object[])"> | |
3423 <summary> | |
3424 Asserts that a string is not exactly the same as the specified <paramref name="unexpected"/>, | |
3425 including any leading or trailing whitespace, with the exception of the casing. | |
3426 </summary> | |
3427 <param name="unexpected">The string that the subject is not expected to be equivalent to.</param> | |
3428 <param name="reason"> | |
3429 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3430 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3431 </param> | |
3432 <param name="reasonArgs"> | |
3433 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3434 </param> | |
3435 </member> | |
3436 <member name="M:FluentAssertions.Assertions.StringAssertions.Match(System.String)"> | |
3437 <summary> | |
3438 Asserts that a string matches a wildcard pattern. | |
3439 </summary> | |
3440 <param name="wildcardPattern"> | |
3441 The wildcard pattern with which the subject is matched, where * and ? have special meanings. | |
3442 </param> | |
3443 </member> | |
3444 <member name="M:FluentAssertions.Assertions.StringAssertions.Match(System.String,System.String,System.Object[])"> | |
3445 <summary> | |
3446 Asserts that a string matches a wildcard pattern. | |
3447 </summary> | |
3448 <param name="wildcardPattern"> | |
3449 The wildcard pattern with which the subject is matched, where * and ? have special meanings. | |
3450 </param> | |
3451 <param name="reason"> | |
3452 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3453 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3454 </param> | |
3455 <param name="reasonArgs"> | |
3456 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3457 </param> | |
3458 </member> | |
3459 <member name="M:FluentAssertions.Assertions.StringAssertions.NotMatch(System.String)"> | |
3460 <summary> | |
3461 Asserts that a string does not match a wildcard pattern. | |
3462 </summary> | |
3463 <param name="wildcardPattern"> | |
3464 The wildcard pattern with which the subject is matched, where * and ? have special meanings. | |
3465 </param> | |
3466 </member> | |
3467 <member name="M:FluentAssertions.Assertions.StringAssertions.NotMatch(System.String,System.String,System.Object[])"> | |
3468 <summary> | |
3469 Asserts that a string does not match a wildcard pattern. | |
3470 </summary> | |
3471 <param name="wildcardPattern"> | |
3472 The wildcard pattern with which the subject is matched, where * and ? have special meanings. | |
3473 </param> | |
3474 <param name="reason"> | |
3475 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3476 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3477 </param> | |
3478 <param name="reasonArgs"> | |
3479 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3480 </param> | |
3481 </member> | |
3482 <member name="M:FluentAssertions.Assertions.StringAssertions.MatchEquivalentOf(System.String)"> | |
3483 <summary> | |
3484 Asserts that a string matches a wildcard pattern. | |
3485 </summary> | |
3486 <param name="wildcardPattern"> | |
3487 The wildcard pattern with which the subject is matched, where * and ? have special meanings. | |
3488 </param> | |
3489 </member> | |
3490 <member name="M:FluentAssertions.Assertions.StringAssertions.MatchEquivalentOf(System.String,System.String,System.Object[])"> | |
3491 <summary> | |
3492 Asserts that a string matches a wildcard pattern. | |
3493 </summary> | |
3494 <param name="wildcardPattern"> | |
3495 The wildcard pattern with which the subject is matched, where * and ? have special meanings. | |
3496 </param> | |
3497 <param name="reason"> | |
3498 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3499 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3500 </param> | |
3501 <param name="reasonArgs"> | |
3502 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3503 </param> | |
3504 </member> | |
3505 <member name="M:FluentAssertions.Assertions.StringAssertions.NotMatchEquivalentOf(System.String)"> | |
3506 <summary> | |
3507 Asserts that a string does not match a wildcard pattern. | |
3508 </summary> | |
3509 <param name="wildcardPattern"> | |
3510 The wildcard pattern with which the subject is matched, where * and ? have special meanings. | |
3511 </param> | |
3512 </member> | |
3513 <member name="M:FluentAssertions.Assertions.StringAssertions.NotMatchEquivalentOf(System.String,System.String,System.Object[])"> | |
3514 <summary> | |
3515 Asserts that a string does not match a wildcard pattern. | |
3516 </summary> | |
3517 <param name="wildcardPattern"> | |
3518 The wildcard pattern with which the subject is matched, where * and ? have special meanings. | |
3519 </param> | |
3520 <param name="reason"> | |
3521 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3522 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3523 </param> | |
3524 <param name="reasonArgs"> | |
3525 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3526 </param> | |
3527 </member> | |
3528 <member name="M:FluentAssertions.Assertions.StringAssertions.StartWith(System.String)"> | |
3529 <summary> | |
3530 Asserts that a string starts exactly with the specified <paramref name="expected"/>, | |
3531 including the casing and any leading or trailing whitespace. | |
3532 </summary> | |
3533 <param name="expected">The string that the subject is expected to start with.</param> | |
3534 </member> | |
3535 <member name="M:FluentAssertions.Assertions.StringAssertions.StartWith(System.String,System.String,System.Object[])"> | |
3536 <summary> | |
3537 Asserts that a string starts exactly with the specified <paramref name="expected"/>, | |
3538 including the casing and any leading or trailing whitespace. | |
3539 </summary> | |
3540 <param name="expected">The string that the subject is expected to start with.</param> | |
3541 <param name="reason"> | |
3542 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3543 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3544 </param> | |
3545 <param name="reasonArgs"> | |
3546 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3547 </param> | |
3548 </member> | |
3549 <member name="M:FluentAssertions.Assertions.StringAssertions.StartWithEquivalent(System.String)"> | |
3550 <summary> | |
3551 Asserts that a string starts with the specified <paramref name="expected"/>, | |
3552 including any leading or trailing whitespace, with the exception of the casing. | |
3553 </summary> | |
3554 <param name="expected">The string that the subject is expected to start with.</param> | |
3555 </member> | |
3556 <member name="M:FluentAssertions.Assertions.StringAssertions.StartWithEquivalent(System.String,System.String,System.Object[])"> | |
3557 <summary> | |
3558 Asserts that a string starts with the specified <paramref name="expected"/>, | |
3559 including any leading or trailing whitespace, with the exception of the casing. | |
3560 </summary> | |
3561 <param name="expected">The string that the subject is expected to start with.</param> | |
3562 <param name="reason"> | |
3563 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3564 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3565 </param> | |
3566 <param name="reasonArgs"> | |
3567 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3568 </param> | |
3569 </member> | |
3570 <member name="M:FluentAssertions.Assertions.StringAssertions.EndWith(System.String)"> | |
3571 <summary> | |
3572 Asserts that a string ends exactly with the specified <paramref name="expected"/>, | |
3573 including the casing and any leading or trailing whitespace. | |
3574 </summary> | |
3575 <param name="expected">The string that the subject is expected to end with.</param> | |
3576 </member> | |
3577 <member name="M:FluentAssertions.Assertions.StringAssertions.EndWith(System.String,System.String,System.Object[])"> | |
3578 <summary> | |
3579 Asserts that a string ends exactly with the specified <paramref name="expected"/>, | |
3580 including the casing and any leading or trailing whitespace. | |
3581 </summary> | |
3582 <param name="expected">The string that the subject is expected to end with.</param> | |
3583 <param name="reason"> | |
3584 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3585 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3586 </param> | |
3587 <param name="reasonArgs"> | |
3588 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3589 </param> | |
3590 </member> | |
3591 <member name="M:FluentAssertions.Assertions.StringAssertions.EndWithEquivalent(System.String)"> | |
3592 <summary> | |
3593 Asserts that a string ends with the specified <paramref name="expected"/>, | |
3594 including any leading or trailing whitespace, with the exception of the casing. | |
3595 </summary> | |
3596 <param name="expected">The string that the subject is expected to end with.</param> | |
3597 </member> | |
3598 <member name="M:FluentAssertions.Assertions.StringAssertions.EndWithEquivalent(System.String,System.String,System.Object[])"> | |
3599 <summary> | |
3600 Asserts that a string ends with the specified <paramref name="expected"/>, | |
3601 including any leading or trailing whitespace, with the exception of the casing. | |
3602 </summary> | |
3603 <param name="expected">The string that the subject is expected to end with.</param> | |
3604 <param name="reason"> | |
3605 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3606 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3607 </param> | |
3608 <param name="reasonArgs"> | |
3609 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3610 </param> | |
3611 </member> | |
3612 <member name="M:FluentAssertions.Assertions.StringAssertions.Contain(System.String)"> | |
3613 <summary> | |
3614 Asserts that a string contains another (fragment of a) string. | |
3615 </summary> | |
3616 <param name="expected"> | |
3617 The (fragement of a) string that the current string should contain. | |
3618 </param> | |
3619 </member> | |
3620 <member name="M:FluentAssertions.Assertions.StringAssertions.Contain(System.String,System.String,System.Object[])"> | |
3621 <summary> | |
3622 Asserts that a string contains another (fragment of a) string. | |
3623 </summary> | |
3624 <param name="expected"> | |
3625 The (fragement of a) string that the current string should contain. | |
3626 </param> | |
3627 <param name="reason"> | |
3628 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3629 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3630 </param> | |
3631 <param name="reasonArgs"> | |
3632 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3633 </param> | |
3634 </member> | |
3635 <member name="M:FluentAssertions.Assertions.StringAssertions.ContainEquivalentOf(System.String)"> | |
3636 <summary> | |
3637 Asserts that a string contains the specified <paramref name="expected"/>, | |
3638 including any leading or trailing whitespace, with the exception of the casing. | |
3639 </summary> | |
3640 <param name="expected">The string that the subject is expected to contain.</param> | |
3641 </member> | |
3642 <member name="M:FluentAssertions.Assertions.StringAssertions.ContainEquivalentOf(System.String,System.String,System.Object[])"> | |
3643 <summary> | |
3644 Asserts that a string contains the specified <paramref name="expected"/>, | |
3645 including any leading or trailing whitespace, with the exception of the casing. | |
3646 </summary> | |
3647 <param name="expected">The string that the subject is expected to contain.</param> | |
3648 <param name="reason"> | |
3649 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3650 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3651 </param> | |
3652 <param name="reasonArgs"> | |
3653 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3654 </param> | |
3655 </member> | |
3656 <member name="M:FluentAssertions.Assertions.StringAssertions.NotContain(System.String)"> | |
3657 <summary> | |
3658 Asserts that a string does not contain another (fragment of a) string. | |
3659 </summary> | |
3660 <param name="expected"> | |
3661 The (fragement of a) string that the current string should not contain. | |
3662 </param> | |
3663 </member> | |
3664 <member name="M:FluentAssertions.Assertions.StringAssertions.NotContain(System.String,System.String,System.Object[])"> | |
3665 <summary> | |
3666 Asserts that a string does not contain another (fragment of a) string. | |
3667 </summary> | |
3668 <param name="expected"> | |
3669 The (fragement of a) string that the current string should not contain. | |
3670 </param> | |
3671 <param name="reason"> | |
3672 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3673 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3674 </param> | |
3675 <param name="reasonArgs"> | |
3676 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3677 </param> | |
3678 </member> | |
3679 <member name="M:FluentAssertions.Assertions.StringAssertions.NotContainEquivalentOf(System.String)"> | |
3680 <summary> | |
3681 Asserts that a string does not contain the specified <paramref name="unexpected"/> string, | |
3682 including any leading or trailing whitespace, with the exception of the casing. | |
3683 </summary> | |
3684 <param name="unexpected">The string that the subject is not expected to contain.</param> | |
3685 </member> | |
3686 <member name="M:FluentAssertions.Assertions.StringAssertions.NotContainEquivalentOf(System.String,System.String,System.Object[])"> | |
3687 <summary> | |
3688 Asserts that a string does not contain the specified <paramref name="unexpected"/> string, | |
3689 including any leading or trailing whitespace, with the exception of the casing. | |
3690 </summary> | |
3691 <param name="unexpected">The string that the subject is not expected to contain.</param> | |
3692 <param name="reason"> | |
3693 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3694 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3695 </param> | |
3696 <param name="reasonArgs"> | |
3697 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3698 </param> | |
3699 </member> | |
3700 <member name="M:FluentAssertions.Assertions.StringAssertions.BeEmpty"> | |
3701 <summary> | |
3702 Asserts that a string is <see cref="F:System.String.Empty"/>. | |
3703 </summary> | |
3704 </member> | |
3705 <member name="M:FluentAssertions.Assertions.StringAssertions.BeEmpty(System.String,System.Object[])"> | |
3706 <summary> | |
3707 Asserts that a string is <see cref="F:System.String.Empty"/>. | |
3708 </summary> | |
3709 <param name="reason"> | |
3710 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3711 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3712 </param> | |
3713 <param name="reasonArgs"> | |
3714 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3715 </param> | |
3716 </member> | |
3717 <member name="M:FluentAssertions.Assertions.StringAssertions.NotBeEmpty"> | |
3718 <summary> | |
3719 Asserts that a string is not <see cref="F:System.String.Empty"/>. | |
3720 </summary> | |
3721 </member> | |
3722 <member name="M:FluentAssertions.Assertions.StringAssertions.NotBeEmpty(System.String,System.Object[])"> | |
3723 <summary> | |
3724 Asserts that a string is not <see cref="F:System.String.Empty"/>. | |
3725 </summary> | |
3726 <param name="reason"> | |
3727 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3728 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3729 </param> | |
3730 <param name="reasonArgs"> | |
3731 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3732 </param> | |
3733 </member> | |
3734 <member name="M:FluentAssertions.Assertions.StringAssertions.HaveLength(System.Int32)"> | |
3735 <summary> | |
3736 Asserts that a string has the specified <paramref name="expected"/> length. | |
3737 </summary> | |
3738 <param name="expected">The expected length of the string</param> | |
3739 </member> | |
3740 <member name="M:FluentAssertions.Assertions.StringAssertions.HaveLength(System.Int32,System.String,System.Object[])"> | |
3741 <summary> | |
3742 Asserts that a string has the specified <paramref name="expected"/> length. | |
3743 </summary> | |
3744 <param name="expected">The expected length of the string</param> | |
3745 <param name="reason"> | |
3746 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3747 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3748 </param> | |
3749 <param name="reasonArgs"> | |
3750 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3751 </param> | |
3752 </member> | |
3753 <member name="M:FluentAssertions.Assertions.StringAssertions.BeNull"> | |
3754 <summary> | |
3755 Asserts that a string is <c>null</c>. | |
3756 </summary> | |
3757 </member> | |
3758 <member name="M:FluentAssertions.Assertions.StringAssertions.BeNull(System.String,System.Object[])"> | |
3759 <summary> | |
3760 Asserts that a string is <c>null</c>. | |
3761 </summary> | |
3762 <param name="reason"> | |
3763 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3764 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3765 </param> | |
3766 <param name="reasonArgs"> | |
3767 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3768 </param> | |
3769 </member> | |
3770 <member name="M:FluentAssertions.Assertions.StringAssertions.NotBeNull"> | |
3771 <summary> | |
3772 Asserts that a string is not <c>null</c>. | |
3773 </summary> | |
3774 </member> | |
3775 <member name="M:FluentAssertions.Assertions.StringAssertions.NotBeNull(System.String,System.Object[])"> | |
3776 <summary> | |
3777 Asserts that a string is not <c>null</c>. | |
3778 </summary> | |
3779 <param name="reason"> | |
3780 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3781 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3782 </param> | |
3783 <param name="reasonArgs"> | |
3784 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3785 </param> | |
3786 </member> | |
3787 <member name="M:FluentAssertions.Assertions.StringAssertions.NotBeNullOrEmpty"> | |
3788 <summary> | |
3789 Asserts that a string is neither <c>null</c> nor <see cref="F:System.String.Empty"/>. | |
3790 </summary> | |
3791 </member> | |
3792 <member name="M:FluentAssertions.Assertions.StringAssertions.NotBeNullOrEmpty(System.String,System.Object[])"> | |
3793 <summary> | |
3794 Asserts that a string is neither <c>null</c> nor <see cref="F:System.String.Empty"/>. | |
3795 </summary> | |
3796 <param name="reason"> | |
3797 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
3798 start with the word <i>because</i>, it is prepended to the message. | |
3799 </param> | |
3800 <param name="reasonArgs"> | |
3801 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
3802 </param> | |
3803 </member> | |
3804 <member name="M:FluentAssertions.Assertions.StringAssertions.BeNullOrEmpty"> | |
3805 <summary> | |
3806 Asserts that a string is either <c>null</c> or <see cref="F:System.String.Empty"/>. | |
3807 </summary> | |
3808 </member> | |
3809 <member name="M:FluentAssertions.Assertions.StringAssertions.BeNullOrEmpty(System.String,System.Object[])"> | |
3810 <summary> | |
3811 Asserts that a string is either <c>null</c> or <see cref="F:System.String.Empty"/>. | |
3812 </summary> | |
3813 <param name="reason"> | |
3814 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
3815 start with the word <i>because</i>, it is prepended to the message. | |
3816 </param> | |
3817 <param name="reasonArgs"> | |
3818 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
3819 </param> | |
3820 </member> | |
3821 <member name="M:FluentAssertions.Assertions.StringAssertions.NotBeBlank"> | |
3822 <summary> | |
3823 Asserts that a string is neither <c>null</c> nor <see cref="F:System.String.Empty"/> nor white space | |
3824 </summary> | |
3825 </member> | |
3826 <member name="M:FluentAssertions.Assertions.StringAssertions.NotBeBlank(System.String,System.Object[])"> | |
3827 <summary> | |
3828 Asserts that a string is neither <c>null</c> nor <see cref="F:System.String.Empty"/> nor white space | |
3829 </summary> | |
3830 <param name="reason"> | |
3831 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
3832 start with the word <i>because</i>, it is prepended to the message. | |
3833 </param> | |
3834 <param name="reasonArgs"> | |
3835 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
3836 </param> | |
3837 </member> | |
3838 <member name="M:FluentAssertions.Assertions.StringAssertions.BeBlank"> | |
3839 <summary> | |
3840 Asserts that a string is either <c>null</c> or <see cref="F:System.String.Empty"/> or white space | |
3841 </summary> | |
3842 </member> | |
3843 <member name="M:FluentAssertions.Assertions.StringAssertions.BeBlank(System.String,System.Object[])"> | |
3844 <summary> | |
3845 Asserts that a string is either <c>null</c> or <see cref="F:System.String.Empty"/> or white space | |
3846 </summary> | |
3847 <param name="reason"> | |
3848 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
3849 start with the word <i>because</i>, it is prepended to the message. | |
3850 </param> | |
3851 <param name="reasonArgs"> | |
3852 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
3853 </param> | |
3854 </member> | |
3855 <member name="P:FluentAssertions.Assertions.StringAssertions.Subject"> | |
3856 <summary> | |
3857 Gets the object which value is being asserted. | |
3858 </summary> | |
3859 </member> | |
3860 <member name="T:FluentAssertions.Assertions.StringValidator"> | |
3861 <summary> | |
3862 Dedicated class for comparing two strings and generating consistent error messages. | |
3863 </summary> | |
3864 </member> | |
3865 <member name="P:FluentAssertions.Assertions.StringWildcardMatchingValidator.Negate"> | |
3866 <summary> | |
3867 Gets or sets a value indicating whether the subject should not match the pattern. | |
3868 </summary> | |
3869 </member> | |
3870 <member name="P:FluentAssertions.Assertions.StringWildcardMatchingValidator.IgnoreCase"> | |
3871 <summary> | |
3872 Gets or sets a value indicating whether the matching process should ignore any casing difference. | |
3873 </summary> | |
3874 </member> | |
3875 <member name="T:FluentAssertions.Assertions.TimeSpanAssertions"> | |
3876 <summary> | |
3877 Contains a number of methods to assert that two <see cref="T:System.DateTime"/> objects differ in the expected way. | |
3878 </summary> | |
3879 <remarks> | |
3880 You can use the <see cref="T:FluentAssertions.Common.FluentDateTimeExtensions"/> and <see cref="T:FluentAssertions.Common.TimeSpanConversionExtensions"/> for a more fluent | |
3881 way of specifying a <see cref="T:System.DateTime"/> or a <see cref="T:System.TimeSpan"/>. | |
3882 </remarks> | |
3883 </member> | |
3884 <member name="M:FluentAssertions.Assertions.TimeSpanAssertions.Before(System.DateTime)"> | |
3885 <summary> | |
3886 Asserts that a <see cref="T:System.DateTime"/> occurs a specified amount of time before another <see cref="T:System.DateTime"/>. | |
3887 </summary> | |
3888 <param name="target"> | |
3889 The <see cref="T:System.DateTime"/> to compare the subject with. | |
3890 </param> | |
3891 </member> | |
3892 <member name="M:FluentAssertions.Assertions.TimeSpanAssertions.Before(System.DateTime,System.String,System.Object[])"> | |
3893 <summary> | |
3894 Asserts that a <see cref="T:System.DateTime"/> occurs a specified amount of time before another <see cref="T:System.DateTime"/>. | |
3895 </summary> | |
3896 <param name="target"> | |
3897 The <see cref="T:System.DateTime"/> to compare the subject with. | |
3898 </param> | |
3899 <param name="reason"> | |
3900 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
3901 start with the word <i>because</i>, it is prepended to the message. | |
3902 </param> | |
3903 <param name="reasonArgs"> | |
3904 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
3905 </param> | |
3906 </member> | |
3907 <member name="M:FluentAssertions.Assertions.TimeSpanAssertions.After(System.DateTime)"> | |
3908 <summary> | |
3909 Asserts that a <see cref="T:System.DateTime"/> occurs a specified amount of time after another <see cref="T:System.DateTime"/>. | |
3910 </summary> | |
3911 <param name="target"> | |
3912 The <see cref="T:System.DateTime"/> to compare the subject with. | |
3913 </param> | |
3914 </member> | |
3915 <member name="M:FluentAssertions.Assertions.TimeSpanAssertions.After(System.DateTime,System.String,System.Object[])"> | |
3916 <summary> | |
3917 Asserts that a <see cref="T:System.DateTime"/> occurs a specified amount of time after another <see cref="T:System.DateTime"/>. | |
3918 </summary> | |
3919 <param name="target"> | |
3920 The <see cref="T:System.DateTime"/> to compare the subject with. | |
3921 </param> | |
3922 <param name="reason"> | |
3923 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
3924 start with the word <i>because</i>, it is prepended to the message. | |
3925 </param> | |
3926 <param name="reasonArgs"> | |
3927 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
3928 </param> | |
3929 </member> | |
3930 <member name="T:FluentAssertions.Assertions.TimeSpanAssertions.TimeSpanPredicate"> | |
3931 <summary> | |
3932 Provides the logic and the display text for a <see cref="T:FluentAssertions.Assertions.TimeSpanCondition"/>. | |
3933 </summary> | |
3934 </member> | |
3935 <member name="T:FluentAssertions.Assertions.TypeAssertions"> | |
3936 <summary> | |
3937 Contains a number of methods to assert that a <see cref="T:System.Type"/> meets certain expectations. | |
3938 </summary> | |
3939 </member> | |
3940 <member name="M:FluentAssertions.Assertions.TypeAssertions.#ctor(System.Type)"> | |
3941 <summary> | |
3942 Initializes a new instance of the <see cref="T:System.Object" /> class. | |
3943 </summary> | |
3944 </member> | |
3945 <member name="M:FluentAssertions.Assertions.TypeAssertions.Be``1"> | |
3946 <summary> | |
3947 Asserts that the current type is equal to the specified <typeparamref name="TExpected"/> type. | |
3948 </summary> | |
3949 </member> | |
3950 <member name="M:FluentAssertions.Assertions.TypeAssertions.Be``1(System.String,System.Object[])"> | |
3951 <summary> | |
3952 Asserts that the current type is equal to the specified <typeparamref name="TExpected"/> type. | |
3953 </summary> | |
3954 <param name="reason"> | |
3955 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3956 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3957 </param> | |
3958 <param name="reasonArgs"> | |
3959 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3960 </param> | |
3961 </member> | |
3962 <member name="M:FluentAssertions.Assertions.TypeAssertions.Be(System.Type)"> | |
3963 <summary> | |
3964 Asserts that the current type is equal to the specified <paramref name="expected"/> type. | |
3965 </summary> | |
3966 <param name="expected">The expected type</param> | |
3967 </member> | |
3968 <member name="M:FluentAssertions.Assertions.TypeAssertions.Be(System.Type,System.String,System.Object[])"> | |
3969 <summary> | |
3970 Asserts that the current type is equal to the specified <paramref name="expected"/> type. | |
3971 </summary> | |
3972 <param name="expected">The expected type</param> | |
3973 <param name="reason"> | |
3974 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
3975 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
3976 </param> | |
3977 <param name="reasonArgs"> | |
3978 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
3979 </param> | |
3980 </member> | |
3981 <member name="M:FluentAssertions.Assertions.TypeAssertions.GetFailureMessageIfTypesAreDifferent(System.Type,System.Type)"> | |
3982 <summary> | |
3983 Creates an error message in case the specifed <paramref name="actual"/> type differs from the | |
3984 <paramref name="expected"/> type. | |
3985 </summary> | |
3986 <returns> | |
3987 An empty <see cref="T:System.String"/> if the two specified types are the same, or an error message that describes that | |
3988 the two specified types are not the same. | |
3989 </returns> | |
3990 </member> | |
3991 <member name="M:FluentAssertions.Assertions.TypeAssertions.NotBe``1"> | |
3992 <summary> | |
3993 Asserts that the current type is not equal to the specified <typeparamref name="TUnexpected"/> type. | |
3994 </summary> | |
3995 </member> | |
3996 <member name="M:FluentAssertions.Assertions.TypeAssertions.NotBe``1(System.String,System.Object[])"> | |
3997 <summary> | |
3998 Asserts that the current type is not equal to the specified <typeparamref name="TUnexpected"/> type. | |
3999 </summary> | |
4000 <param name="reason"> | |
4001 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
4002 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
4003 </param> | |
4004 <param name="reasonArgs"> | |
4005 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
4006 </param> | |
4007 </member> | |
4008 <member name="M:FluentAssertions.Assertions.TypeAssertions.NotBe(System.Type)"> | |
4009 <summary> | |
4010 Asserts that the current type is not equal to the specified <paramref name="unexpected"/> type. | |
4011 </summary> | |
4012 <param name="unexpected">The unexpected type</param> | |
4013 </member> | |
4014 <member name="M:FluentAssertions.Assertions.TypeAssertions.NotBe(System.Type,System.String,System.Object[])"> | |
4015 <summary> | |
4016 Asserts that the current type is not equal to the specified <paramref name="unexpected"/> type. | |
4017 </summary> | |
4018 <param name="unexpected">The unexpected type</param> | |
4019 <param name="reason"> | |
4020 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
4021 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
4022 </param> | |
4023 <param name="reasonArgs"> | |
4024 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
4025 </param> | |
4026 </member> | |
4027 <member name="M:FluentAssertions.Assertions.TypeAssertions.BeDecoratedWith``1"> | |
4028 <summary> | |
4029 Asserts that the <see cref="T:System.Type"/> is decorated with the specified <typeparamref name="TAttribute"/>. | |
4030 </summary> | |
4031 </member> | |
4032 <member name="M:FluentAssertions.Assertions.TypeAssertions.BeDecoratedWith``1(System.String,System.Object[])"> | |
4033 <summary> | |
4034 Asserts that the <see cref="T:System.Type"/> is decorated with the specified <typeparamref name="TAttribute"/>. | |
4035 </summary> | |
4036 <param name="reason"> | |
4037 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
4038 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
4039 </param> | |
4040 <param name="reasonArgs"> | |
4041 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
4042 </param> | |
4043 </member> | |
4044 <member name="P:FluentAssertions.Assertions.TypeAssertions.Subject"> | |
4045 <summary> | |
4046 Gets the object which value is being asserted. | |
4047 </summary> | |
4048 </member> | |
4049 <member name="T:FluentAssertions.Assertions.TypeExtensions"> | |
4050 <summary> | |
4051 Extension methods for getting method and property selectors for a type. | |
4052 </summary> | |
4053 </member> | |
4054 <member name="M:FluentAssertions.Assertions.TypeExtensions.Types(System.Reflection.Assembly)"> | |
4055 <summary> | |
4056 Returns the types that are visible outside the specified <see cref="T:System.Reflection.Assembly"/>. | |
4057 </summary> | |
4058 </member> | |
4059 <member name="M:FluentAssertions.Assertions.TypeExtensions.Methods(System.Type)"> | |
4060 <summary> | |
4061 Returns a method selector for the current <see cref="T:System.Type"/>. | |
4062 </summary> | |
4063 </member> | |
4064 <member name="M:FluentAssertions.Assertions.TypeExtensions.Methods(FluentAssertions.Assertions.TypeSelector)"> | |
4065 <summary> | |
4066 Returns a method selector for the current <see cref="T:System.Type"/>. | |
4067 </summary> | |
4068 </member> | |
4069 <member name="M:FluentAssertions.Assertions.TypeExtensions.Properties(System.Type)"> | |
4070 <summary> | |
4071 Returns a property selector for the current <see cref="T:System.Type"/>. | |
4072 </summary> | |
4073 </member> | |
4074 <member name="M:FluentAssertions.Assertions.TypeExtensions.Properties(FluentAssertions.Assertions.TypeSelector)"> | |
4075 <summary> | |
4076 Returns a property selector for the current <see cref="T:System.Type"/>. | |
4077 </summary> | |
4078 </member> | |
4079 <member name="T:FluentAssertions.Assertions.TypeSelector"> | |
4080 <summary> | |
4081 Allows for fluent filtering a list of types. | |
4082 </summary> | |
4083 </member> | |
4084 <member name="M:FluentAssertions.Assertions.TypeSelector.ThatDeriveFrom``1"> | |
4085 <summary> | |
4086 Determines whether a type is a subclass of another type, but NOT the same type. | |
4087 </summary> | |
4088 </member> | |
4089 <member name="M:FluentAssertions.Assertions.TypeSelector.ThatImplement``1"> | |
4090 <summary> | |
4091 Determines whether a type implements an interface (but is not the interface itself). | |
4092 </summary> | |
4093 </member> | |
4094 <member name="M:FluentAssertions.Assertions.TypeSelector.ThatAreDecoratedWith``1"> | |
4095 <summary> | |
4096 Determines whether a type is decorated with a particular attribute. | |
4097 </summary> | |
4098 </member> | |
4099 <member name="M:FluentAssertions.Assertions.TypeSelector.ThatAreInNamespace(System.String)"> | |
4100 <summary> | |
4101 Determines whether the namespace of type is exactly <paramref name="namespace"/>. | |
4102 </summary> | |
4103 </member> | |
4104 <member name="M:FluentAssertions.Assertions.TypeSelector.ThatAreUnderNamespace(System.String)"> | |
4105 <summary> | |
4106 Determines whether the namespace of type is starts with <paramref name="namespace"/>. | |
4107 </summary> | |
4108 </member> | |
4109 <member name="M:FluentAssertions.Assertions.TypeSelector.GetEnumerator"> | |
4110 <summary> | |
4111 Returns an enumerator that iterates through the collection. | |
4112 </summary> | |
4113 <returns> | |
4114 A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection. | |
4115 </returns> | |
4116 <filterpriority>1</filterpriority> | |
4117 </member> | |
4118 <member name="M:FluentAssertions.Assertions.TypeSelector.System#Collections#IEnumerable#GetEnumerator"> | |
4119 <summary> | |
4120 Returns an enumerator that iterates through a collection. | |
4121 </summary> | |
4122 <returns> | |
4123 An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection. | |
4124 </returns> | |
4125 <filterpriority>2</filterpriority> | |
4126 </member> | |
4127 <member name="T:FluentAssertions.Assertions.XAttributeAssertions"> | |
4128 <summary> | |
4129 Contains a number of methods to assert that an <see cref="T:System.Xml.Linq.XAttribute"/> is in the expected state. | |
4130 </summary> | |
4131 </member> | |
4132 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.#ctor(System.Xml.Linq.XAttribute)"> | |
4133 <summary> | |
4134 Initializes a new instance of the <see cref="T:FluentAssertions.Assertions.XAttributeAssertions"/> class. | |
4135 </summary> | |
4136 </member> | |
4137 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.Be(System.Xml.Linq.XAttribute)"> | |
4138 <summary> | |
4139 Asserts that the current <see cref="T:System.Xml.Linq.XAttribute"/> equals the <paramref name="expected"/> attribute. | |
4140 </summary> | |
4141 <param name="expected">The expected attribute</param> | |
4142 </member> | |
4143 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.Be(System.Xml.Linq.XAttribute,System.String,System.Object[])"> | |
4144 <summary> | |
4145 Asserts that the current <see cref="T:System.Xml.Linq.XAttribute"/> equals the <paramref name="expected"/> attribute. | |
4146 </summary> | |
4147 <param name="expected">The expected attribute</param> | |
4148 <param name="reason"> | |
4149 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
4150 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
4151 </param> | |
4152 <param name="reasonArgs"> | |
4153 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
4154 </param> | |
4155 </member> | |
4156 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.NotBe(System.Xml.Linq.XAttribute)"> | |
4157 <summary> | |
4158 Asserts that the current <see cref="T:System.Xml.Linq.XAttribute"/> does not equal the <paramref name="unexpected"/> attribute, | |
4159 using its <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
4160 </summary> | |
4161 <param name="unexpected">The unexpected attribute</param> | |
4162 </member> | |
4163 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.NotBe(System.Xml.Linq.XAttribute,System.String,System.Object[])"> | |
4164 <summary> | |
4165 Asserts that the current <see cref="T:System.Xml.Linq.XAttribute"/> does not equal the <paramref name="unexpected"/> attribute, | |
4166 using its <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
4167 </summary> | |
4168 <param name="unexpected">The unexpected attribute</param> | |
4169 <param name="reason"> | |
4170 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
4171 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
4172 </param> | |
4173 <param name="reasonArgs"> | |
4174 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
4175 </param> | |
4176 </member> | |
4177 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.BeNull"> | |
4178 <summary> | |
4179 Asserts that the <see cref="T:System.Xml.Linq.XAttribute"/> is <c>null</c>. | |
4180 </summary> | |
4181 </member> | |
4182 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.BeNull(System.String,System.Object[])"> | |
4183 <summary> | |
4184 Asserts that the <see cref="T:System.Xml.Linq.XAttribute"/> is <c>null</c>. | |
4185 </summary> | |
4186 <param name="reason"> | |
4187 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
4188 start with the word <i>because</i>, it is prepended to the message. | |
4189 </param> | |
4190 <param name="reasonArgs"> | |
4191 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
4192 </param> | |
4193 </member> | |
4194 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.NotBeNull"> | |
4195 <summary> | |
4196 Asserts that the <see cref="T:System.Xml.Linq.XAttribute"/> is not <c>null</c>. | |
4197 </summary> | |
4198 </member> | |
4199 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.NotBeNull(System.String,System.Object[])"> | |
4200 <summary> | |
4201 Asserts that the <see cref="T:System.Xml.Linq.XAttribute"/> is not <c>null</c>. | |
4202 </summary> | |
4203 <param name="reason"> | |
4204 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
4205 start with the word <i>because</i>, it is prepended to the message. | |
4206 </param> | |
4207 <param name="reasonArgs"> | |
4208 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
4209 </param> | |
4210 </member> | |
4211 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.HaveValue(System.String)"> | |
4212 <summary> | |
4213 Asserts that the current <see cref="T:System.Xml.Linq.XAttribute"/> has the specified <paramref name="expected"/> value. | |
4214 </summary> | |
4215 <param name="expected">The expected value</param> | |
4216 </member> | |
4217 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.HaveValue(System.String,System.String,System.Object[])"> | |
4218 <summary> | |
4219 Asserts that the current <see cref="T:System.Xml.Linq.XAttribute"/> has the specified <paramref name="expected"/> value. | |
4220 </summary> | |
4221 <param name="expected">The expected value</param> | |
4222 <param name="reason"> | |
4223 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
4224 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
4225 </param> | |
4226 <param name="reasonArgs"> | |
4227 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
4228 </param> | |
4229 </member> | |
4230 <member name="P:FluentAssertions.Assertions.XAttributeAssertions.Subject"> | |
4231 <summary> | |
4232 Gets the object which value is being asserted. | |
4233 </summary> | |
4234 </member> | |
4235 <member name="T:FluentAssertions.Assertions.XDocumentAssertions"> | |
4236 <summary> | |
4237 Contains a number of methods to assert that an <see cref="T:System.Xml.Linq.XDocument"/> is in the expected state. | |
4238 </summary> | |
4239 </member> | |
4240 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.#ctor(System.Xml.Linq.XDocument)"> | |
4241 <summary> | |
4242 Initializes a new instance of the <see cref="T:FluentAssertions.Assertions.XDocumentAssertions"/> class. | |
4243 </summary> | |
4244 </member> | |
4245 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.Be(System.Xml.Linq.XDocument)"> | |
4246 <summary> | |
4247 Asserts that the current <see cref="T:System.Xml.Linq.XDocument"/> equals the <paramref name="expected"/> document, | |
4248 using its <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
4249 </summary> | |
4250 <param name="expected">The expected document</param> | |
4251 </member> | |
4252 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.Be(System.Xml.Linq.XDocument,System.String,System.Object[])"> | |
4253 <summary> | |
4254 Asserts that the current <see cref="T:System.Xml.Linq.XDocument"/> equals the <paramref name="expected"/> document, | |
4255 using its <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
4256 </summary> | |
4257 <param name="expected">The expected document</param> | |
4258 <param name="reason"> | |
4259 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
4260 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
4261 </param> | |
4262 <param name="reasonArgs"> | |
4263 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
4264 </param> | |
4265 </member> | |
4266 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.NotBe(System.Xml.Linq.XDocument)"> | |
4267 <summary> | |
4268 Asserts that the current <see cref="T:System.Xml.Linq.XDocument"/> does not equal the <paramref name="unexpected"/> document, | |
4269 using its <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
4270 </summary> | |
4271 <param name="unexpected">The unexpected document</param> | |
4272 </member> | |
4273 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.NotBe(System.Xml.Linq.XDocument,System.String,System.Object[])"> | |
4274 <summary> | |
4275 Asserts that the current <see cref="T:System.Xml.Linq.XDocument"/> does not equal the <paramref name="unexpected"/> document, | |
4276 using its <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
4277 </summary> | |
4278 <param name="unexpected">The unexpected document</param> | |
4279 <param name="reason"> | |
4280 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
4281 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
4282 </param> | |
4283 <param name="reasonArgs"> | |
4284 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
4285 </param> | |
4286 </member> | |
4287 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.BeNull"> | |
4288 <summary> | |
4289 Asserts that the <see cref="T:System.Xml.Linq.XDocument"/> is <c>null</c>. | |
4290 </summary> | |
4291 </member> | |
4292 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.BeNull(System.String,System.Object[])"> | |
4293 <summary> | |
4294 Asserts that the <see cref="T:System.Xml.Linq.XDocument"/> is <c>null</c>. | |
4295 </summary> | |
4296 <param name="reason"> | |
4297 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
4298 start with the word <i>because</i>, it is prepended to the message. | |
4299 </param> | |
4300 <param name="reasonArgs"> | |
4301 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
4302 </param> | |
4303 </member> | |
4304 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.NotBeNull"> | |
4305 <summary> | |
4306 Asserts that the <see cref="T:System.Xml.Linq.XDocument"/> is not <c>null</c>. | |
4307 </summary> | |
4308 </member> | |
4309 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.NotBeNull(System.String,System.Object[])"> | |
4310 <summary> | |
4311 Asserts that the <see cref="T:System.Xml.Linq.XDocument"/> is not <c>null</c>. | |
4312 </summary> | |
4313 <param name="reason"> | |
4314 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
4315 start with the word <i>because</i>, it is prepended to the message. | |
4316 </param> | |
4317 <param name="reasonArgs"> | |
4318 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
4319 </param> | |
4320 </member> | |
4321 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.HaveRoot(System.String)"> | |
4322 <summary> | |
4323 Asserts that the current <see cref="T:System.Xml.Linq.XDocument"/> has a root element with the specified | |
4324 <paramref name="expected"/> name. | |
4325 </summary> | |
4326 <param name="expected">The name of the expected root element of the current document.</param> | |
4327 </member> | |
4328 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.HaveRoot(System.String,System.String,System.Object[])"> | |
4329 <summary> | |
4330 Asserts that the current <see cref="T:System.Xml.Linq.XDocument"/> has a root element with the specified | |
4331 <paramref name="expected"/> name. | |
4332 </summary> | |
4333 <param name="expected">The name of the expected root element of the current document.</param> | |
4334 <param name="reason"> | |
4335 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
4336 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
4337 </param> | |
4338 <param name="reasonArgs"> | |
4339 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
4340 </param> | |
4341 </member> | |
4342 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.HaveElement(System.String)"> | |
4343 <summary> | |
4344 Asserts that the <see cref="P:System.Xml.Linq.XDocument.Root"/> element of the current <see cref="T:System.Xml.Linq.XDocument"/> has a direct | |
4345 child element with the specified <paramref name="expected"/> name. | |
4346 </summary> | |
4347 <param name="expected"> | |
4348 The name of the expected child element of the current document's Root <see cref="P:System.Xml.Linq.XDocument.Root"/> element. | |
4349 </param> | |
4350 </member> | |
4351 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.HaveElement(System.String,System.String,System.Object[])"> | |
4352 <summary> | |
4353 Asserts that the <see cref="P:System.Xml.Linq.XDocument.Root"/> element of the current <see cref="T:System.Xml.Linq.XDocument"/> has a direct | |
4354 child element with the specified <paramref name="expected"/> name. | |
4355 </summary> | |
4356 <param name="expected"> | |
4357 The name of the expected child element of the current document's Root <see cref="P:System.Xml.Linq.XDocument.Root"/> element. | |
4358 </param> | |
4359 <param name="reason"> | |
4360 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
4361 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
4362 </param> | |
4363 <param name="reasonArgs"> | |
4364 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
4365 </param> | |
4366 </member> | |
4367 <member name="P:FluentAssertions.Assertions.XDocumentAssertions.Subject"> | |
4368 <summary> | |
4369 Gets the object which value is being asserted. | |
4370 </summary> | |
4371 </member> | |
4372 <member name="T:FluentAssertions.Assertions.XElementAssertions"> | |
4373 <summary> | |
4374 Contains a number of methods to assert that an <see cref="T:System.Xml.Linq.XElement"/> is in the expected state. | |
4375 </summary> | |
4376 </member> | |
4377 <member name="M:FluentAssertions.Assertions.XElementAssertions.#ctor(System.Xml.Linq.XElement)"> | |
4378 <summary> | |
4379 Initializes a new instance of the <see cref="T:FluentAssertions.Assertions.XElementAssertions"/> class. | |
4380 </summary> | |
4381 </member> | |
4382 <member name="M:FluentAssertions.Assertions.XElementAssertions.Be(System.Xml.Linq.XElement)"> | |
4383 <summary> | |
4384 Asserts that the current <see cref="T:System.Xml.Linq.XElement"/> equals the <paramref name="expected"/> element. | |
4385 </summary> | |
4386 <param name="expected">The expected element</param> | |
4387 </member> | |
4388 <member name="M:FluentAssertions.Assertions.XElementAssertions.Be(System.Xml.Linq.XElement,System.String,System.Object[])"> | |
4389 <summary> | |
4390 Asserts that the current <see cref="T:System.Xml.Linq.XElement"/> equals the <paramref name="expected"/> element. | |
4391 </summary> | |
4392 <param name="expected">The expected element</param> | |
4393 <param name="reason"> | |
4394 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
4395 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
4396 </param> | |
4397 <param name="reasonArgs"> | |
4398 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
4399 </param> | |
4400 </member> | |
4401 <member name="M:FluentAssertions.Assertions.XElementAssertions.NotBe(System.Xml.Linq.XElement)"> | |
4402 <summary> | |
4403 Asserts that the current <see cref="T:System.Xml.Linq.XElement"/> does not equal the <paramref name="unexpected"/> element, | |
4404 using its <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
4405 </summary> | |
4406 <param name="unexpected">The unexpected element</param> | |
4407 </member> | |
4408 <member name="M:FluentAssertions.Assertions.XElementAssertions.NotBe(System.Xml.Linq.XElement,System.String,System.Object[])"> | |
4409 <summary> | |
4410 Asserts that the current <see cref="T:System.Xml.Linq.XElement"/> does not equal the <paramref name="unexpected"/> element, | |
4411 using its <see cref="M:System.Object.Equals(System.Object)"/> implementation. | |
4412 </summary> | |
4413 <param name="unexpected">The unexpected element</param> | |
4414 <param name="reason"> | |
4415 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
4416 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
4417 </param> | |
4418 <param name="reasonArgs"> | |
4419 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
4420 </param> | |
4421 </member> | |
4422 <member name="M:FluentAssertions.Assertions.XElementAssertions.BeNull"> | |
4423 <summary> | |
4424 Asserts that the <see cref="T:System.Xml.Linq.XElement"/> is <c>null</c>. | |
4425 </summary> | |
4426 </member> | |
4427 <member name="M:FluentAssertions.Assertions.XElementAssertions.BeNull(System.String,System.Object[])"> | |
4428 <summary> | |
4429 Asserts that the <see cref="T:System.Xml.Linq.XElement"/> is <c>null</c>. | |
4430 </summary> | |
4431 <param name="reason"> | |
4432 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
4433 start with the word <i>because</i>, it is prepended to the message. | |
4434 </param> | |
4435 <param name="reasonArgs"> | |
4436 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
4437 </param> | |
4438 </member> | |
4439 <member name="M:FluentAssertions.Assertions.XElementAssertions.NotBeNull"> | |
4440 <summary> | |
4441 Asserts that the <see cref="T:System.Xml.Linq.XElement"/> is not <c>null</c>. | |
4442 </summary> | |
4443 </member> | |
4444 <member name="M:FluentAssertions.Assertions.XElementAssertions.NotBeNull(System.String,System.Object[])"> | |
4445 <summary> | |
4446 Asserts that the <see cref="T:System.Xml.Linq.XElement"/> is not <c>null</c>. | |
4447 </summary> | |
4448 <param name="reason"> | |
4449 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
4450 start with the word <i>because</i>, it is prepended to the message. | |
4451 </param> | |
4452 <param name="reasonArgs"> | |
4453 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
4454 </param> | |
4455 </member> | |
4456 <member name="M:FluentAssertions.Assertions.XElementAssertions.HaveAttribute(System.String,System.String)"> | |
4457 <summary> | |
4458 Asserts that the current <see cref="T:System.Xml.Linq.XElement"/> has an attribute with the specified <paramref name="expectedName"/> | |
4459 and <paramref name="expectedValue"/>. | |
4460 </summary> | |
4461 <param name="expectedName">The name of the expected attribute</param> | |
4462 <param name="expectedValue">The value of the expected attribute</param> | |
4463 </member> | |
4464 <member name="M:FluentAssertions.Assertions.XElementAssertions.HaveAttribute(System.String,System.String,System.String,System.Object[])"> | |
4465 <summary> | |
4466 Asserts that the current <see cref="T:System.Xml.Linq.XElement"/> has an attribute with the specified <paramref name="expectedName"/> | |
4467 and <paramref name="expectedValue"/>. | |
4468 </summary> | |
4469 <param name="expectedName">The name of the expected attribute</param> | |
4470 <param name="expectedValue">The value of the expected attribute</param> | |
4471 <param name="reason"> | |
4472 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
4473 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
4474 </param> | |
4475 <param name="reasonArgs"> | |
4476 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
4477 </param> | |
4478 </member> | |
4479 <member name="M:FluentAssertions.Assertions.XElementAssertions.HaveElement(System.String)"> | |
4480 <summary> | |
4481 Asserts that the current <see cref="T:System.Xml.Linq.XElement"/> has a direct child element with the specified | |
4482 <paramref name="expected"/> name. | |
4483 </summary> | |
4484 <param name="expected">The name of the expected child element</param> | |
4485 </member> | |
4486 <member name="M:FluentAssertions.Assertions.XElementAssertions.HaveElement(System.String,System.String,System.Object[])"> | |
4487 <summary> | |
4488 Asserts that the current <see cref="T:System.Xml.Linq.XElement"/> has a direct child element with the specified | |
4489 <paramref name="expected"/> name. | |
4490 </summary> | |
4491 <param name="expected">The name of the expected child element</param> | |
4492 <param name="reason"> | |
4493 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion | |
4494 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically. | |
4495 </param> | |
4496 <param name="reasonArgs"> | |
4497 Zero or more objects to format using the placeholders in <see cref="!:reason"/>. | |
4498 </param> | |
4499 </member> | |
4500 <member name="P:FluentAssertions.Assertions.XElementAssertions.Subject"> | |
4501 <summary> | |
4502 Gets the object which value is being asserted. | |
4503 </summary> | |
4504 </member> | |
4505 <member name="M:FluentAssertions.Common.Extensions.IndexOfFirstMismatch(System.String,System.String)"> | |
4506 <summary> | |
4507 Finds the first index at which the <paramref name="value"/> does not match the <paramref name="expected"/> | |
4508 string anymore, including the exact casing. | |
4509 </summary> | |
4510 </member> | |
4511 <member name="M:FluentAssertions.Common.Extensions.IndexOfFirstMismatch(System.String,System.String,System.StringComparison)"> | |
4512 <summary> | |
4513 Finds the first index at which the <paramref name="value"/> does not match the <paramref name="expected"/> | |
4514 string anymore, accounting for the specified <paramref name="stringComparison"/>. | |
4515 </summary> | |
4516 </member> | |
4517 <member name="M:FluentAssertions.Common.Extensions.IndexedSegmentAt(System.String,System.Int32)"> | |
4518 <summary> | |
4519 Gets the quoted three characters at the specified index of a string, including the index itself. | |
4520 </summary> | |
4521 </member> | |
4522 <member name="M:FluentAssertions.Common.Extensions.FirstLine(System.String)"> | |
4523 <summary> | |
4524 Replaces all characters that might conflict with formatting placeholders and newlines with their escaped counterparts. | |
4525 </summary> | |
4526 </member> | |
4527 <member name="M:FluentAssertions.Common.Extensions.Escape(System.String)"> | |
4528 <summary> | |
4529 Replaces all characters that might conflict with formatting placeholders and newlines with their escaped counterparts. | |
4530 </summary> | |
4531 </member> | |
4532 <member name="T:FluentAssertions.Common.FluentDateTimeExtensions"> | |
4533 <summary> | |
4534 Extension methods on <see cref="T:System.Int32"/> to allow for a more fluent way of specifying a <see cref="T:System.DateTime"/>. | |
4535 </summary> | |
4536 <example> | |
4537 Instead of<br/> | |
4538 <br/> | |
4539 new DateTime(2011, 3, 10)<br/> | |
4540 <br/> | |
4541 you can write 3.March(2011)<br/> | |
4542 <br/> | |
4543 Or even<br/> | |
4544 <br/> | |
4545 3.March(2011).At(09, 30) | |
4546 </example> | |
4547 <seealso cref="T:FluentAssertions.Common.TimeSpanConversionExtensions"/> | |
4548 </member> | |
4549 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.January(System.Int32,System.Int32)"> | |
4550 <summary> | |
4551 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/> | |
4552 in the month January. | |
4553 </summary> | |
4554 </member> | |
4555 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.February(System.Int32,System.Int32)"> | |
4556 <summary> | |
4557 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/> | |
4558 in the month February. | |
4559 </summary> | |
4560 </member> | |
4561 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.March(System.Int32,System.Int32)"> | |
4562 <summary> | |
4563 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/> | |
4564 in the month March. | |
4565 </summary> | |
4566 </member> | |
4567 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.April(System.Int32,System.Int32)"> | |
4568 <summary> | |
4569 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/> | |
4570 in the month April. | |
4571 </summary> | |
4572 </member> | |
4573 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.May(System.Int32,System.Int32)"> | |
4574 <summary> | |
4575 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/> | |
4576 in the month May. | |
4577 </summary> | |
4578 </member> | |
4579 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.June(System.Int32,System.Int32)"> | |
4580 <summary> | |
4581 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/> | |
4582 in the month June. | |
4583 </summary> | |
4584 </member> | |
4585 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.July(System.Int32,System.Int32)"> | |
4586 <summary> | |
4587 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/> | |
4588 in the month July. | |
4589 </summary> | |
4590 </member> | |
4591 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.August(System.Int32,System.Int32)"> | |
4592 <summary> | |
4593 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/> | |
4594 in the month August. | |
4595 </summary> | |
4596 </member> | |
4597 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.September(System.Int32,System.Int32)"> | |
4598 <summary> | |
4599 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/> | |
4600 in the month September. | |
4601 </summary> | |
4602 </member> | |
4603 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.October(System.Int32,System.Int32)"> | |
4604 <summary> | |
4605 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/> | |
4606 in the month October. | |
4607 </summary> | |
4608 </member> | |
4609 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.November(System.Int32,System.Int32)"> | |
4610 <summary> | |
4611 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/> | |
4612 in the month November. | |
4613 </summary> | |
4614 </member> | |
4615 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.December(System.Int32,System.Int32)"> | |
4616 <summary> | |
4617 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/> | |
4618 in the month December. | |
4619 </summary> | |
4620 </member> | |
4621 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.At(System.DateTime,System.TimeSpan)"> | |
4622 <summary> | |
4623 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="date"/> and <paramref name="time"/>. | |
4624 </summary> | |
4625 </member> | |
4626 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.At(System.DateTime,System.Int32,System.Int32,System.Int32)"> | |
4627 <summary> | |
4628 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="date"/> and time with the specified | |
4629 <paramref name="hours"/>, <paramref name="minutes"/> and optionally <paramref name="seconds"/>. | |
4630 </summary> | |
4631 </member> | |
4632 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.Before(System.TimeSpan,System.DateTime)"> | |
4633 <summary> | |
4634 Returns a new <see cref="T:System.DateTime"/> value that is the current <see cref="T:System.TimeSpan"/> before the | |
4635 specified <paramref name="sourceDateTime"/>. | |
4636 </summary> | |
4637 </member> | |
4638 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.After(System.TimeSpan,System.DateTime)"> | |
4639 <summary> | |
4640 Returns a new <see cref="T:System.DateTime"/> value that is the current <see cref="T:System.TimeSpan"/> after the | |
4641 specified <paramref name="sourceDateTime"/>. | |
4642 </summary> | |
4643 </member> | |
4644 <member name="T:FluentAssertions.Common.ObjectAlreadyTrackedException"> | |
4645 <summary> | |
4646 Is thrown when the <see cref="T:FluentAssertions.Common.UniqueObjectTracker"/> detects an object that was already processed. | |
4647 </summary> | |
4648 </member> | |
4649 <member name="T:FluentAssertions.Common.TimeSpanConversionExtensions"> | |
4650 <summary> | |
4651 Extension methods on <see cref="T:System.Int32"/> to allow for a more fluent way of specifying a <see cref="T:System.TimeSpan"/>. | |
4652 </summary> | |
4653 <example> | |
4654 Instead of<br/> | |
4655 <br/> | |
4656 TimeSpan.FromHours(12)<br/> | |
4657 <br/> | |
4658 you can write<br/> | |
4659 <br/> | |
4660 12.Hours()<br/> | |
4661 <br/> | |
4662 Or even<br/> | |
4663 <br/> | |
4664 12.Hours().And(30.Minutes()). | |
4665 </example> | |
4666 <seealso cref="T:FluentAssertions.Common.FluentDateTimeExtensions"/> | |
4667 </member> | |
4668 <member name="M:FluentAssertions.Common.TimeSpanConversionExtensions.Milliseconds(System.Int32)"> | |
4669 <summary> | |
4670 Returns a <see cref="T:System.TimeSpan"/> based on a number of milliseconds. | |
4671 </summary> | |
4672 </member> | |
4673 <member name="M:FluentAssertions.Common.TimeSpanConversionExtensions.Seconds(System.Int32)"> | |
4674 <summary> | |
4675 Returns a <see cref="T:System.TimeSpan"/> based on a number of seconds. | |
4676 </summary> | |
4677 </member> | |
4678 <member name="M:FluentAssertions.Common.TimeSpanConversionExtensions.Seconds(System.Int32,System.TimeSpan)"> | |
4679 <summary> | |
4680 Returns a <see cref="T:System.TimeSpan"/> based on a number of seconds, and add the specified | |
4681 <paramref name="offset"/>. | |
4682 </summary> | |
4683 </member> | |
4684 <member name="M:FluentAssertions.Common.TimeSpanConversionExtensions.Minutes(System.Int32)"> | |
4685 <summary> | |
4686 Returns a <see cref="T:System.TimeSpan"/> based on a number of minutes. | |
4687 </summary> | |
4688 </member> | |
4689 <member name="M:FluentAssertions.Common.TimeSpanConversionExtensions.Minutes(System.Int32,System.TimeSpan)"> | |
4690 <summary> | |
4691 Returns a <see cref="T:System.TimeSpan"/> based on a number of minutes, and add the specified | |
4692 <paramref name="offset"/>. | |
4693 </summary> | |
4694 </member> | |
4695 <member name="M:FluentAssertions.Common.TimeSpanConversionExtensions.Hours(System.Int32)"> | |
4696 <summary> | |
4697 Returns a <see cref="T:System.TimeSpan"/> based on a number of hours. | |
4698 </summary> | |
4699 </member> | |
4700 <member name="M:FluentAssertions.Common.TimeSpanConversionExtensions.Hours(System.Int32,System.TimeSpan)"> | |
4701 <summary> | |
4702 Returns a <see cref="T:System.TimeSpan"/> based on a number of hours, and add the specified | |
4703 <paramref name="offset"/>. | |
4704 </summary> | |
4705 </member> | |
4706 <member name="M:FluentAssertions.Common.TimeSpanConversionExtensions.Days(System.Int32)"> | |
4707 <summary> | |
4708 Returns a <see cref="T:System.TimeSpan"/> based on a number of days. | |
4709 </summary> | |
4710 </member> | |
4711 <member name="M:FluentAssertions.Common.TimeSpanConversionExtensions.Days(System.Int32,System.TimeSpan)"> | |
4712 <summary> | |
4713 Returns a <see cref="T:System.TimeSpan"/> based on a number of days, and add the specified | |
4714 <paramref name="offset"/>. | |
4715 </summary> | |
4716 </member> | |
4717 <member name="M:FluentAssertions.Common.TimeSpanConversionExtensions.And(System.TimeSpan,System.TimeSpan)"> | |
4718 <summary> | |
4719 Convenience method for chaining multiple calls to the methods provided by this class. | |
4720 </summary> | |
4721 <example> | |
4722 23.Hours().And(59.Minutes()) | |
4723 </example> | |
4724 </member> | |
4725 <member name="T:FluentAssertions.Common.UniqueObjectTracker"> | |
4726 <summary> | |
4727 Simple class for detecting an attempt to process an object that were already processed. | |
4728 </summary> | |
4729 </member> | |
4730 <member name="M:FluentAssertions.Common.UniqueObjectTracker.Track(System.Object)"> | |
4731 <summary> | |
4732 Tracks the specified reference but throws an <see cref="T:FluentAssertions.Common.ObjectAlreadyTrackedException"/> | |
4733 if that reference was already tracked. | |
4734 </summary> | |
4735 </member> | |
4736 <member name="T:FluentAssertions.EventMonitoring.EventMonitoringExtensions"> | |
4737 <summary> | |
4738 Provides extension methods for monitoring and querying events. | |
4739 </summary> | |
4740 </member> | |
4741 <member name="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.MonitorEvents(System.ComponentModel.INotifyPropertyChanged)"> | |
4742 <summary> | |
4743 Starts monitoring an object for its <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged"/> events. | |
4744 </summary> | |
4745 <exception cref="T:System.ArgumentNullException">Thrown if eventSource is Null.</exception> | |
4746 </member> | |
4747 <member name="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.ShouldRaisePropertyChangeFor``1(``0,System.Linq.Expressions.Expression{System.Func{``0,System.Object}})"> | |
4748 <summary> | |
4749 Asserts that an object has raised the <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged"/> event for a particular property. | |
4750 </summary> | |
4751 <remarks> | |
4752 You must call <see cref="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.MonitorEvents(System.ComponentModel.INotifyPropertyChanged)"/> on the same object prior to this call so that Fluent Assertions can | |
4753 subscribe for the events of the object. | |
4754 </remarks> | |
4755 </member> | |
4756 <member name="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.ShouldRaisePropertyChangeFor``1(``0,System.Linq.Expressions.Expression{System.Func{``0,System.Object}},System.String,System.Object[])"> | |
4757 <summary> | |
4758 Asserts that an object has raised the <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged"/> event for a particular property. | |
4759 </summary> | |
4760 <param name="eventSource">The object exposing the event.</param> | |
4761 <param name="propertyExpression"> | |
4762 A lambda expression referring to the property for which the property changed event should have been raised. | |
4763 </param> | |
4764 <param name="reason"> | |
4765 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
4766 start with the word <i>because</i>, it is prepended to the message. | |
4767 </param> | |
4768 <param name="reasonArgs"> | |
4769 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
4770 </param> | |
4771 <remarks> | |
4772 You must call <see cref="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.MonitorEvents(System.ComponentModel.INotifyPropertyChanged)"/> on the same object prior to this call so that Fluent Assertions can | |
4773 subscribe for the events of the object. | |
4774 </remarks> | |
4775 </member> | |
4776 <member name="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.ShouldNotRaisePropertyChangeFor``1(``0,System.Linq.Expressions.Expression{System.Func{``0,System.Object}})"> | |
4777 <summary> | |
4778 Asserts that an object has not raised the <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged"/> event for a particular property. | |
4779 </summary> | |
4780 <remarks> | |
4781 You must call <see cref="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.MonitorEvents(System.ComponentModel.INotifyPropertyChanged)"/> on the same object prior to this call so that Fluent Assertions can | |
4782 subscribe for the events of the object. | |
4783 </remarks> | |
4784 </member> | |
4785 <member name="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.ShouldNotRaisePropertyChangeFor``1(``0,System.Linq.Expressions.Expression{System.Func{``0,System.Object}},System.String,System.Object[])"> | |
4786 <summary> | |
4787 Asserts that an object has not raised the <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged"/> event for a particular property. | |
4788 </summary> | |
4789 <param name="eventSource">The object exposing the event.</param> | |
4790 <param name="propertyExpression"> | |
4791 A lambda expression referring to the property for which the property changed event should have been raised. | |
4792 </param> | |
4793 <param name="reason"> | |
4794 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not | |
4795 start with the word <i>because</i>, it is prepended to the message. | |
4796 </param> | |
4797 <param name="reasonArgs"> | |
4798 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
4799 </param> | |
4800 <remarks> | |
4801 You must call <see cref="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.MonitorEvents(System.ComponentModel.INotifyPropertyChanged)"/> on the same object prior to this call so that Fluent Assertions can | |
4802 subscribe for the events of the object. | |
4803 </remarks> | |
4804 </member> | |
4805 <member name="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.WithSender(FluentAssertions.EventMonitoring.IEventRecorder,System.Object)"> | |
4806 <summary> | |
4807 Asserts that all occurences of the event originated from the <param name="expectedSender"/>. | |
4808 </summary> | |
4809 </member> | |
4810 <member name="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.WithArgs``1(FluentAssertions.EventMonitoring.IEventRecorder,System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})"> | |
4811 <summary> | |
4812 Asserts that at least one occurrence of the event had an <see cref="T:System.EventArgs"/> object matching a predicate. | |
4813 </summary> | |
4814 </member> | |
4815 <member name="T:FluentAssertions.EventMonitoring.EventRecorder"> | |
4816 <summary> | |
4817 Records activity for a single event. | |
4818 </summary> | |
4819 </member> | |
4820 <member name="T:FluentAssertions.EventMonitoring.IEventRecorder"> | |
4821 <summary> | |
4822 Records raised events for one event on one object | |
4823 </summary> | |
4824 </member> | |
4825 <member name="M:FluentAssertions.EventMonitoring.IEventRecorder.RecordEvent(System.Object[])"> | |
4826 <summary> | |
4827 Store information about a raised event | |
4828 </summary> | |
4829 <param name = "parameters">Parameters the event was raised with</param> | |
4830 </member> | |
4831 <member name="P:FluentAssertions.EventMonitoring.IEventRecorder.EventObject"> | |
4832 <summary> | |
4833 The object events are recorded from | |
4834 </summary> | |
4835 </member> | |
4836 <member name="P:FluentAssertions.EventMonitoring.IEventRecorder.EventName"> | |
4837 <summary> | |
4838 The name of the event that's recorded | |
4839 </summary> | |
4840 </member> | |
4841 <member name="M:FluentAssertions.EventMonitoring.EventRecorder.#ctor(System.Object,System.String)"> | |
4842 <summary> | |
4843 </summary> | |
4844 <param name = "eventRaiser">The object events are recorded from</param> | |
4845 <param name = "eventName">The name of the event that's recorded</param> | |
4846 </member> | |
4847 <member name="M:FluentAssertions.EventMonitoring.EventRecorder.GetEnumerator"> | |
4848 <summary> | |
4849 Enumerate raised events | |
4850 </summary> | |
4851 </member> | |
4852 <member name="M:FluentAssertions.EventMonitoring.EventRecorder.System#Collections#IEnumerable#GetEnumerator"> | |
4853 <summary> | |
4854 Enumerate raised events | |
4855 </summary> | |
4856 <returns></returns> | |
4857 </member> | |
4858 <member name="M:FluentAssertions.EventMonitoring.EventRecorder.RecordEvent(System.Object[])"> | |
4859 <summary> | |
4860 Called by the auto-generated IL, to record information about a raised event. | |
4861 </summary> | |
4862 </member> | |
4863 <member name="P:FluentAssertions.EventMonitoring.EventRecorder.EventObject"> | |
4864 <summary> | |
4865 The object events are recorded from | |
4866 </summary> | |
4867 </member> | |
4868 <member name="P:FluentAssertions.EventMonitoring.EventRecorder.EventName"> | |
4869 <summary> | |
4870 The name of the event that's recorded | |
4871 </summary> | |
4872 </member> | |
4873 <member name="T:FluentAssertions.EventMonitoring.EventRecordersMap"> | |
4874 <summary> | |
4875 Simple dictionary that uses a <see cref="T:System.WeakReference"/> to the event source as the key. | |
4876 This should ensure the Garbage Collector can still clean-up the event source object. | |
4877 </summary> | |
4878 </member> | |
4879 <member name="T:FluentAssertions.EventMonitoring.RecordedEvent"> | |
4880 <summary> | |
4881 This class is used to store data about an intercepted event | |
4882 </summary> | |
4883 </member> | |
4884 <member name="M:FluentAssertions.EventMonitoring.RecordedEvent.#ctor(System.Object,System.Object[])"> | |
4885 <summary> | |
4886 Default constructor stores the parameters the event was raised with | |
4887 </summary> | |
4888 </member> | |
4889 <member name="P:FluentAssertions.EventMonitoring.RecordedEvent.Parameters"> | |
4890 <summary> | |
4891 Parameters for the event | |
4892 </summary> | |
4893 </member> | |
4894 <member name="T:FluentAssertions.Execute"> | |
4895 <summary> | |
4896 Helper class for verifying a condition and/or throwing a test harness specific exception representing an assertion failure. | |
4897 </summary> | |
4898 </member> | |
4899 <member name="M:FluentAssertions.Execute.Verify(System.Func{System.Boolean},System.String,System.Object,System.Object,System.String,System.Object[])"> | |
4900 <summary> | |
4901 Asserts that the supplied <paramref name = "condition" /> is met. | |
4902 </summary> | |
4903 <param name = "condition">The condition to assert.</param> | |
4904 <param name = "failureMessage"> | |
4905 The message that will be used in the exception. This should describe what was expected and why. This message | |
4906 can contain the following three placeholders:<br /> | |
4907 <list type = "bullet"> | |
4908 <item>{0} = the expected value</item> | |
4909 <item>{1} = the actual value</item> | |
4910 <item>{2} = a reason explaining the expectations</item> | |
4911 </list><br /> | |
4912 </param> | |
4913 <param name = "expected"> | |
4914 The expected value, or <c>null</c> if there is no explicit expected value. | |
4915 </param> | |
4916 <param name = "actual">The actual value, or <c>null</c> if there is no explicit actual value.</param> | |
4917 <param name = "reason">Should describe the reason for the expectation.</param> | |
4918 <param name = "reasonArgs">Optional args for formatting placeholders in the <paramref name = "reason" />.</param> | |
4919 </member> | |
4920 <member name="M:FluentAssertions.Execute.Verify(System.Boolean,System.String,System.Object,System.Object,System.String,System.Object[])"> | |
4921 <summary> | |
4922 Asserts that the supplied <paramref name = "condition" /> is met. | |
4923 </summary> | |
4924 <param name = "condition">The condition to assert.</param> | |
4925 <param name = "failureMessage"> | |
4926 The message that will be used in the exception. This should describe what was expected and why. This message | |
4927 can contain the following three placeholders:<br /> | |
4928 <list type = "bullet"> | |
4929 <item>{0} = the expected value</item> | |
4930 <item>{1} = the actual value</item> | |
4931 <item>{2} = a reason explaining the expectations</item> | |
4932 </list><br /> | |
4933 </param> | |
4934 <param name = "expected"> | |
4935 The expected value, or <c>null</c> if there is no explicit expected value. | |
4936 </param> | |
4937 <param name = "actual">The actual value, or <c>null</c> if there is no explicit actual value.</param> | |
4938 <param name = "reason">Should describe the reason for the expectation.</param> | |
4939 <param name = "reasonArgs">Optional args for formatting placeholders in the <paramref name = "reason" />.</param> | |
4940 </member> | |
4941 <member name="M:FluentAssertions.Execute.Fail(System.String,System.Object,System.Object,System.String,System.Object[],System.Object[])"> | |
4942 <summary> | |
4943 Handles an assertion failure. | |
4944 </summary> | |
4945 <param name = "failureMessage"> | |
4946 The message that will be used in the exception. This should describe what was expected and why. This message | |
4947 can contain the following three placeholders:<br /> | |
4948 <list type = "bullet"> | |
4949 <item>{0} = the expected value</item> | |
4950 <item>{1} = the actual value</item> | |
4951 <item>{2} = a reason explaining the expectations</item> | |
4952 </list><br /> | |
4953 Any additional placeholders are allowed and will be satisfied using the <paramref name = "failureMessageArgs" />. | |
4954 </param> | |
4955 <param name = "expected"> | |
4956 The expected value, or <c>null</c> if there is no explicit expected value. | |
4957 </param> | |
4958 <param name = "actual">The actual value, or <c>null</c> if there is no explicit actual value.</param> | |
4959 <param name = "reason">Should describe the reason for the expectation.</param> | |
4960 <param name = "reasonArgs">Optional args for formatting placeholders in the <paramref name = "reason" />.</param> | |
4961 <param name = "failureMessageArgs"> | |
4962 Optional arguments to satisfy any additional placeholders in the <paramref name = "failureMessage" /> | |
4963 </param> | |
4964 </member> | |
4965 <member name="P:FluentAssertions.Execute.Verification"> | |
4966 <summary> | |
4967 Gets an object that wraps and executes a conditional or unconditional verification. | |
4968 </summary> | |
4969 </member> | |
4970 <member name="M:FluentAssertions.Formatting.IValueFormatter.CanHandle(System.Object)"> | |
4971 <summary> | |
4972 Indicates whether the current <see cref="T:FluentAssertions.Formatting.IValueFormatter"/> can handle the specified <paramref name="value"/>. | |
4973 </summary> | |
4974 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param> | |
4975 <returns> | |
4976 <c>true</c> if the current <see cref="T:FluentAssertions.Formatting.IValueFormatter"/> can handle the specified value; otherwise, <c>false</c>. | |
4977 </returns> | |
4978 </member> | |
4979 <member name="M:FluentAssertions.Formatting.IValueFormatter.ToString(System.Object,FluentAssertions.Common.UniqueObjectTracker,System.Int32)"> | |
4980 <summary> | |
4981 Returns a <see cref="T:System.String"/> that represents this instance. | |
4982 </summary> | |
4983 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param> | |
4984 <param name="uniqueObjectTracker"> | |
4985 An object that is passed through recursive calls and which should be used to detect circular references | |
4986 in the object graph that is being converted to a string representation.</param> | |
4987 <param name="nestedPropertyLevel"> | |
4988 The level of nesting for the supplied value. This is used for indenting the format string for objects that have | |
4989 no <see cref="M:System.Object.ToString"/> override. | |
4990 </param> | |
4991 <returns> | |
4992 A <see cref="T:System.String"/> that represents this instance. | |
4993 </returns> | |
4994 </member> | |
4995 <member name="M:FluentAssertions.Formatting.DateTimeValueFormatter.ToString(System.Object,FluentAssertions.Common.UniqueObjectTracker,System.Int32)"> | |
4996 <summary> | |
4997 Returns a <see cref="T:System.String"/> that represents this instance. | |
4998 </summary> | |
4999 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param> | |
5000 <param name="uniqueObjectTracker"> | |
5001 An object that is passed through recursive calls and which should be used to detect circular references | |
5002 in the object graph that is being converted to a string representation.</param> | |
5003 <param name="nestedPropertyLevel"> | |
5004 The level of nesting for the supplied value. This is used for indenting the format string for objects that have | |
5005 no <see cref="M:System.Object.ToString"/> override. | |
5006 </param> | |
5007 <returns> | |
5008 A <see cref="T:System.String"/> that represents this instance. | |
5009 </returns> | |
5010 </member> | |
5011 <member name="M:FluentAssertions.Formatting.DefaultValueFormatter.CanHandle(System.Object)"> | |
5012 <summary> | |
5013 Determines whether this instance can handle the specified value. | |
5014 </summary> | |
5015 <param name = "value">The value.</param> | |
5016 <returns> | |
5017 <c>true</c> if this instance can handle the specified value; otherwise, <c>false</c>. | |
5018 </returns> | |
5019 </member> | |
5020 <member name="M:FluentAssertions.Formatting.DefaultValueFormatter.ToString(System.Object,FluentAssertions.Common.UniqueObjectTracker,System.Int32)"> | |
5021 <summary> | |
5022 Returns a <see cref="T:System.String"/> that represents this instance. | |
5023 </summary> | |
5024 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param> | |
5025 <param name="uniqueObjectTracker"> | |
5026 An object that is passed through recursive calls and which should be used to detect circular references | |
5027 in the object graph that is being converted to a string representation.</param> | |
5028 <param name="nestedPropertyLevel"> | |
5029 The level of nesting for the supplied value. This is used for indenting the format string for objects that have | |
5030 no <see cref="M:System.Object.ToString"/> override. | |
5031 </param> | |
5032 <returns> | |
5033 A <see cref="T:System.String"/> that represents this instance. | |
5034 </returns> | |
5035 </member> | |
5036 <member name="M:FluentAssertions.Formatting.EnumerableValueFormatter.ToString(System.Object,FluentAssertions.Common.UniqueObjectTracker,System.Int32)"> | |
5037 <summary> | |
5038 Returns a <see cref="T:System.String"/> that represents this instance. | |
5039 </summary> | |
5040 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param> | |
5041 <param name="uniqueObjectTracker"> | |
5042 An object that is passed through recursive calls and which should be used to detect circular references | |
5043 in the object graph that is being converted to a string representation.</param> | |
5044 <param name="nestedPropertyLevel"> | |
5045 The level of nesting for the supplied value. This is used for indenting the format string for objects that have | |
5046 no <see cref="M:System.Object.ToString"/> override. | |
5047 </param> | |
5048 <returns> | |
5049 A <see cref="T:System.String"/> that represents this instance. | |
5050 </returns> | |
5051 </member> | |
5052 <member name="T:FluentAssertions.Formatting.Formatter"> | |
5053 <summary> | |
5054 Provides services for formatting an object being used in an assertion in a human readable format. | |
5055 </summary> | |
5056 </member> | |
5057 <member name="F:FluentAssertions.Formatting.Formatter.formatters"> | |
5058 <summary> | |
5059 A list of objects responsible for formatting the objects represented by placeholders. | |
5060 </summary> | |
5061 </member> | |
5062 <member name="M:FluentAssertions.Formatting.Formatter.ToString(System.Object,FluentAssertions.Common.UniqueObjectTracker,System.Int32)"> | |
5063 <summary> | |
5064 Returns a human-readable representation of a particular object. | |
5065 </summary> | |
5066 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param> | |
5067 <param name="uniqueObjectTracker"></param> | |
5068 <param name="nestedPropertyLevel"> | |
5069 The level of nesting for the supplied value. This is used for indenting the format string for objects that have | |
5070 no <see cref="M:System.Object.ToString"/> override. | |
5071 </param> | |
5072 <returns> | |
5073 A <see cref="T:System.String"/> that represents this instance. | |
5074 </returns> | |
5075 </member> | |
5076 <member name="M:FluentAssertions.Formatting.Formatter.ToStringLine(System.Object,FluentAssertions.Common.UniqueObjectTracker,System.Int32)"> | |
5077 <summary> | |
5078 Returns a human-readable representation of a particular object that starts on a new line. | |
5079 </summary> | |
5080 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param> | |
5081 <param name="nestedPropertyLevel"> | |
5082 The level of nesting for the supplied value. This is used for indenting the format string for objects that have | |
5083 no <see cref="M:System.Object.ToString"/> override. | |
5084 </param> | |
5085 <returns> | |
5086 A <see cref="T:System.String"/> that represents this instance. | |
5087 </returns> | |
5088 </member> | |
5089 <member name="M:FluentAssertions.Formatting.TimeSpanValueFormatter.ToString(System.Object,FluentAssertions.Common.UniqueObjectTracker,System.Int32)"> | |
5090 <summary> | |
5091 Returns a <see cref="T:System.String"/> that represents this instance. | |
5092 </summary> | |
5093 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param> | |
5094 <param name="uniqueObjectTracker"> | |
5095 An object that is passed through recursive calls and which should be used to detect circular references | |
5096 in the object graph that is being converted to a string representation.</param> | |
5097 <param name="nestedPropertyLevel"> | |
5098 The level of nesting for the supplied value. This is used for indenting the format string for objects that have | |
5099 no <see cref="M:System.Object.ToString"/> override. | |
5100 </param> | |
5101 <returns> | |
5102 A <see cref="T:System.String"/> that represents this instance. | |
5103 </returns> | |
5104 </member> | |
5105 <member name="M:FluentAssertions.Formatting.XAttributeValueFormatter.ToString(System.Object,FluentAssertions.Common.UniqueObjectTracker,System.Int32)"> | |
5106 <summary> | |
5107 Returns a <see cref="T:System.String"/> that represents this instance. | |
5108 </summary> | |
5109 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param> | |
5110 <param name="uniqueObjectTracker"> | |
5111 An object that is passed through recursive calls and which should be used to detect circular references | |
5112 in the object graph that is being converted to a string representation.</param> | |
5113 <param name="nestedPropertyLevel"> | |
5114 The level of nesting for the supplied value. This is used for indenting the format string for objects that have | |
5115 no <see cref="M:System.Object.ToString"/> override. | |
5116 </param> | |
5117 <returns> | |
5118 A <see cref="T:System.String"/> that represents this instance. | |
5119 </returns> | |
5120 </member> | |
5121 <member name="M:FluentAssertions.Formatting.XDocumentValueFormatter.ToString(System.Object,FluentAssertions.Common.UniqueObjectTracker,System.Int32)"> | |
5122 <summary> | |
5123 Returns a <see cref="T:System.String"/> that represents this instance. | |
5124 </summary> | |
5125 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param> | |
5126 <param name="uniqueObjectTracker"> | |
5127 An object that is passed through recursive calls and which should be used to detect circular references | |
5128 in the object graph that is being converted to a string representation.</param> | |
5129 <param name="nestedPropertyLevel"> | |
5130 The level of nesting for the supplied value. This is used for indenting the format string for objects that have | |
5131 no <see cref="M:System.Object.ToString"/> override. | |
5132 </param> | |
5133 <returns> | |
5134 A <see cref="T:System.String"/> that represents this instance. | |
5135 </returns> | |
5136 </member> | |
5137 <member name="M:FluentAssertions.Formatting.XElementValueFormatter.ToString(System.Object,FluentAssertions.Common.UniqueObjectTracker,System.Int32)"> | |
5138 <summary> | |
5139 Returns a <see cref="T:System.String"/> that represents this instance. | |
5140 </summary> | |
5141 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param> | |
5142 <param name="uniqueObjectTracker"> | |
5143 An object that is passed through recursive calls and which should be used to detect circular references | |
5144 in the object graph that is being converted to a string representation.</param> | |
5145 <param name="nestedPropertyLevel"> | |
5146 The level of nesting for the supplied value. This is used for indenting the format string for objects that have | |
5147 no <see cref="M:System.Object.ToString"/> override. | |
5148 </param> | |
5149 <returns> | |
5150 A <see cref="T:System.String"/> that represents this instance. | |
5151 </returns> | |
5152 </member> | |
5153 <member name="T:FluentAssertions.Verification"> | |
5154 <summary> | |
5155 Provides a fluent API for verifying an arbitrary condition. | |
5156 </summary> | |
5157 </member> | |
5158 <member name="F:FluentAssertions.Verification.ReasonTag"> | |
5159 <summary> | |
5160 Represents the phrase that can be used in <see cref="M:FluentAssertions.Verification.FailWith(System.String,System.Object[])"/> as a placeholder for the reason of an assertion. | |
5161 </summary> | |
5162 </member> | |
5163 <member name="M:FluentAssertions.Verification.#ctor"> | |
5164 <summary> | |
5165 Initializes a new instance of the <see cref="T:FluentAssertions.Verification"/> class. | |
5166 </summary> | |
5167 </member> | |
5168 <member name="M:FluentAssertions.Verification.SubjectNameOr(System.String)"> | |
5169 <summary> | |
5170 Gets the name or identifier of the current subject, or a default value if the subject is not known. | |
5171 </summary> | |
5172 </member> | |
5173 <member name="M:FluentAssertions.Verification.ForCondition(System.Boolean)"> | |
5174 <summary> | |
5175 Specify the condition that must be satisfied. | |
5176 </summary> | |
5177 <param name="condition">If <c>true</c> the verification will be succesful.</param> | |
5178 </member> | |
5179 <member name="M:FluentAssertions.Verification.ForCondition(System.Func{System.Boolean})"> | |
5180 <summary> | |
5181 Specify a predicate that with the condition that must be satisfied. | |
5182 </summary> | |
5183 </member> | |
5184 <member name="M:FluentAssertions.Verification.BecauseOf(System.String,System.Object[])"> | |
5185 <summary> | |
5186 Specify the reason why you expect the condition to be <c>true</c>. | |
5187 </summary> | |
5188 <param name="reason"> | |
5189 A formatted phrase explaining why the condition should be satisfied. If the phrase does not | |
5190 start with the word <i>because</i>, it is prepended to the message. | |
5191 </param> | |
5192 <param name="reasonArgs"> | |
5193 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders. | |
5194 </param> | |
5195 </member> | |
5196 <member name="M:FluentAssertions.Verification.FailWith(System.String,System.Object[])"> | |
5197 <summary> | |
5198 Define the failure message for the verification. | |
5199 </summary> | |
5200 <remarks> | |
5201 If the <paramref name="failureMessage"/> contains the text "{reason}", this will be replaced by the reason as | |
5202 defined through <see cref="M:FluentAssertions.Verification.BecauseOf(System.String,System.Object[])"/>. Only 10 <paramref name="failureArgs"/> are supported in combination with | |
5203 a {reason}. | |
5204 </remarks> | |
5205 <param name="failureMessage">The format string that represents the failure message.</param> | |
5206 <param name="failureArgs">Optional arguments for the <paramref name="failureMessage"/></param> | |
5207 </member> | |
5208 <member name="P:FluentAssertions.Verification.UsingLineBreaks"> | |
5209 <summary> | |
5210 Indicates that every argument passed into <see cref="M:FluentAssertions.Verification.FailWith(System.String,System.Object[])"/> is displayed on a separate line. | |
5211 </summary> | |
5212 </member> | |
5213 <member name="P:FluentAssertions.Verification.SubjectName"> | |
5214 <summary> | |
5215 Gets or sets the name of the subject for the next verification. | |
5216 </summary> | |
5217 </member> | |
5218 </members> | |
5219 </doc> |