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