-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMicrosoft.Reactive.Testing.xml
379 lines (379 loc) · 20.4 KB
/
Microsoft.Reactive.Testing.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Reactive.Testing</name>
</assembly>
<members>
<member name="T:Microsoft.Reactive.Testing.ITestableObservable`1">
<summary>
Observable that records subscriptions and notifications sent by the observable.
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="P:Microsoft.Reactive.Testing.ITestableObservable`1.Subscriptions">
<summary>
Gets the subscriptions to the observable.
</summary>
</member>
<member name="P:Microsoft.Reactive.Testing.ITestableObservable`1.Messages">
<summary>
Gets the recorded notifications sent by the observable.
</summary>
</member>
<member name="T:Microsoft.Reactive.Testing.ITestableObserver`1">
<summary>
Observer that records received notifications.
</summary>
</member>
<member name="P:Microsoft.Reactive.Testing.ITestableObserver`1.Messages">
<summary>
Gets recorded notifications received by the observer.
</summary>
</member>
<member name="T:Microsoft.Reactive.Testing.ReactiveAssert">
<summary>
Helper class to write asserts in Rx unit tests.
</summary>
</member>
<member name="M:Microsoft.Reactive.Testing.ReactiveAssert.AreElementsEqual``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
<summary>
Asserts that both enumerable sequences have equal length and equal elements.
</summary>
<param name="expected">Expected sequence.</param>
<param name="actual">Actual sequence to compare against the expected one.</param>
</member>
<member name="M:Microsoft.Reactive.Testing.ReactiveAssert.AreElementsEqual``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.String)">
<summary>
Asserts that both enumerable sequences have equal length and equal elements.
</summary>
<param name="expected">Expected sequence.</param>
<param name="actual">Actual sequence to compare against the expected one.</param>
<param name="message">Error message for assert failure.</param>
</member>
<member name="M:Microsoft.Reactive.Testing.ReactiveAssert.AreElementsEqual``1(System.IObservable{``0},System.IObservable{``0})">
<summary>
Asserts that both observable sequences have equal length and equal elements.
</summary>
<param name="expected">Expected sequence.</param>
<param name="actual">Actual sequence to compare against the expected one.</param>
</member>
<member name="M:Microsoft.Reactive.Testing.ReactiveAssert.AreElementsEqual``1(System.IObservable{``0},System.IObservable{``0},System.String)">
<summary>
Asserts that both observable sequences have equal length and equal elements.
</summary>
<param name="expected">Expected sequence.</param>
<param name="actual">Actual sequence to compare against the expected one.</param>
<param name="message">Error message for assert failure.</param>
</member>
<member name="M:Microsoft.Reactive.Testing.ReactiveAssert.Throws``1(System.Action)">
<summary>
Asserts that the given action throws an exception of the type specified in the generic parameter.
</summary>
<typeparam name="TException">Type of the exception to check for.</typeparam>
<param name="action">Action to run.</param>
</member>
<member name="M:Microsoft.Reactive.Testing.ReactiveAssert.Throws``1(System.Action,System.String)">
<summary>
Asserts that the given action throws an exception of the type specified in the generic parameter.
</summary>
<typeparam name="TException">Type of the exception to check for.</typeparam>
<param name="action">Action to run.</param>
<param name="message">Error message for assert failure.</param>
</member>
<member name="M:Microsoft.Reactive.Testing.ReactiveAssert.Throws``1(``0,System.Action)">
<summary>
Asserts that the given action throws the specified exception.
</summary>
<typeparam name="TException">Type of the exception to check for.</typeparam>
<param name="exception">Exception to assert being thrown.</param>
<param name="action">Action to run.</param>
</member>
<member name="M:Microsoft.Reactive.Testing.ReactiveAssert.Throws``1(``0,System.Action,System.String)">
<summary>
Asserts that the given action throws the specified exception.
</summary>
<typeparam name="TException">Type of the exception to check for.</typeparam>
<param name="exception">Exception to assert being thrown.</param>
<param name="action">Action to run.</param>
<param name="message">Error message for assert failure.</param>
</member>
<member name="T:Microsoft.Reactive.Testing.ReactiveTest">
<summary>
Base type to write tests for Rx code.
</summary>
</member>
<member name="F:Microsoft.Reactive.Testing.ReactiveTest.Created">
<summary>
Default virtual time used for creation of observable sequences in Rx tests.
</summary>
</member>
<member name="F:Microsoft.Reactive.Testing.ReactiveTest.Subscribed">
<summary>
Default virtual time used to subscribe to an observable sequence in Rx tests.
</summary>
</member>
<member name="F:Microsoft.Reactive.Testing.ReactiveTest.Disposed">
<summary>
Default virtual time used to dispose subscriptions in Rx tests.
</summary>
</member>
<member name="M:Microsoft.Reactive.Testing.ReactiveTest.OnNext``1(System.Int64,``0)">
<summary>
Factory method for a recorded OnNext notification at a given time with a given value.
</summary>
<param name="ticks">Recorded virtual time the OnNext notification occurs.</param>
<param name="value">Recorded value stored in the OnNext notification.</param>
<returns>Recorded OnNext notification.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.ReactiveTest.OnCompleted``1(System.Int64)">
<summary>
Factory method for a recorded OnCompleted notification at a given time.
</summary>
<param name="ticks">Recorded virtual time the OnCompleted notification occurs.</param>
<returns>Recorded OnCompleted notification.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.ReactiveTest.OnError``1(System.Int64,System.Exception)">
<summary>
Factory method for a recorded OnError notification at a given time with a given error.
</summary>
<param name="ticks">Recorded virtual time the OnError notification occurs.</param>
<param name="exception">Recorded exception stored in the OnError notification.</param>
<returns>Recorded OnError notification.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.ReactiveTest.Subscribe(System.Int64,System.Int64)">
<summary>
Factory method for a recorded subscription.
</summary>
<param name="start">Virtual time indicating when the subscription was created.</param>
<param name="end">Virtual time indicating when the subscription was disposed.</param>
<returns>Subscription object.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.ReactiveTest.Subscribe(System.Int64)">
<summary>
Factory method for a recorded subscription.
</summary>
<param name="start">Virtual time indicating when the subscription was created.</param>
<returns>Subscription object.</returns>
</member>
<member name="T:Microsoft.Reactive.Testing.Recorded`1">
<summary>
Records a value with the time it was produced on.
</summary>
</member>
<member name="M:Microsoft.Reactive.Testing.Recorded`1.#ctor(System.Int64,`0)">
<summary>
Creates a new object recording the production of the specified value at the given virtual time.
</summary>
<param name="time">Virtual time the value was produced on.</param>
<param name="value">Value that was produced.</param>
</member>
<member name="M:Microsoft.Reactive.Testing.Recorded`1.Equals(Microsoft.Reactive.Testing.Recorded{`0})">
<summary>
Checks whether the given recorded object is equal to the current instance.
</summary>
<param name="other">Recorded object to check for equality.</param>
<returns>true if both objects are equal; false otherwise.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.Recorded`1.Equals(System.Object)">
<summary>
Checks whether the given object is equal to the current instance.
</summary>
<param name="obj">Object to check for equality.</param>
<returns>true if both objects are equal; false otherwise.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.Recorded`1.GetHashCode">
<summary>
Computes a hash code for the current instance.
</summary>
<returns>Hash code.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.Recorded`1.ToString">
<summary>
Gets a friendly string representation of the current instance.
</summary>
<returns>String representation.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.Recorded`1.op_Equality(Microsoft.Reactive.Testing.Recorded{`0},Microsoft.Reactive.Testing.Recorded{`0})">
<summary>
Checks whether the two given recorded objects are equal.
</summary>
<param name="left">First object to check for equality.</param>
<param name="right">Second object to check for equality.</param>
<returns>true if both objects are equal; false otherwise.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.Recorded`1.op_Inequality(Microsoft.Reactive.Testing.Recorded{`0},Microsoft.Reactive.Testing.Recorded{`0})">
<summary>
Checks whether the two given recorded objects are not equal.
</summary>
<param name="left">First object to check for equality.</param>
<param name="right">Second object to check for equality.</param>
<returns>true if both objects are inequal; false otherwise.</returns>
</member>
<member name="P:Microsoft.Reactive.Testing.Recorded`1.Time">
<summary>
Gets the virtual time the value was produced on.
</summary>
</member>
<member name="P:Microsoft.Reactive.Testing.Recorded`1.Value">
<summary>
Gets the value.
</summary>
</member>
<member name="T:Microsoft.Reactive.Testing.Subscription">
<summary>
Records information about subscripts to and unsubscriptions from observable sequences.
</summary>
</member>
<member name="F:Microsoft.Reactive.Testing.Subscription.Infinite">
<summary>
Infinite virtual time value.
</summary>
</member>
<member name="M:Microsoft.Reactive.Testing.Subscription.#ctor(System.Int64)">
<summary>
Creates a new subscription object.
</summary>
<param name="subscribe">Virtual time at which the subscription occurred.</param>-
</member>
<member name="M:Microsoft.Reactive.Testing.Subscription.#ctor(System.Int64,System.Int64)">
<summary>
Creates a new subscription object.
</summary>
<param name="subscribe">Virtual time at which the subscription occurred.</param>
<param name="unsubscribe">Virtual time at which the unsubscription occurred.</param>
</member>
<member name="M:Microsoft.Reactive.Testing.Subscription.Equals(Microsoft.Reactive.Testing.Subscription)">
<summary>
Checks whether the given subscription is equal to the current instance.
</summary>
<param name="other">Subscription object to check for equality.</param>
<returns>true if both objects are equal; false otherwise.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.Subscription.Equals(System.Object)">
<summary>
Checks whether the given object is equal to the current instance.
</summary>
<param name="obj">Object to check for equality.</param>
<returns>true if both objects are equal; false otherwise.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.Subscription.GetHashCode">
<summary>
Computes a hash code for the current instance.
</summary>
<returns>Hash code.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.Subscription.ToString">
<summary>
Gets a friendly string representation of the current instance.
</summary>
<returns>String representation.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.Subscription.op_Equality(Microsoft.Reactive.Testing.Subscription,Microsoft.Reactive.Testing.Subscription)">
<summary>
Checks whether the two given subscription objects are equal.
</summary>
<param name="left">First object to check for equality.</param>
<param name="right">Second object to check for equality.</param>
<returns>true if both objects are equal; false otherwise.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.Subscription.op_Inequality(Microsoft.Reactive.Testing.Subscription,Microsoft.Reactive.Testing.Subscription)">
<summary>
Checks whether the two given subscription objects are not equal.
</summary>
<param name="left">First object to check for equality.</param>
<param name="right">Second object to check for equality.</param>
<returns>true if both objects are inequal; false otherwise.</returns>
</member>
<member name="P:Microsoft.Reactive.Testing.Subscription.Subscribe">
<summary>
Gets the subscription virtual time.
</summary>
</member>
<member name="P:Microsoft.Reactive.Testing.Subscription.Unsubscribe">
<summary>
Gets the unsubscription virtual time.
</summary>
</member>
<member name="T:Microsoft.Reactive.Testing.TestScheduler">
<summary>
Base class for testing Rx code.
</summary>
</member>
<member name="M:Microsoft.Reactive.Testing.TestScheduler.ScheduleAbsolute``1(``0,System.Int64,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
<summary>
Schedules an action to be executed at the specified virtual time.
</summary>
<param name="state">State passed to the action to be executed.</param>
<param name="action">Action to be executed.</param>
<param name="dueTime">Absolute virtual time at which to execute the action.</param>
<returns>Disposable object used to cancel the scheduled action (best effort).</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.TestScheduler.Add(System.Int64,System.Int64)">
<summary>
Adds a relative virtual time to an absolute virtual time value.
</summary>
<param name="absolute">Absolute virtual time value.</param>
<param name="relative">Relative virtual time value to add.</param>
<returns>Resulting absolute virtual time sum value.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.TestScheduler.ToDateTimeOffset(System.Int64)">
<summary>
Converts the absolute virtual time value to a DateTimeOffset value.
</summary>
<param name="absolute">Absolute virtual time value to convert.</param>
<returns>Corresponding DateTimeOffset value.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.TestScheduler.ToRelative(System.TimeSpan)">
<summary>
Converts the TimeSpan value to a relative virtual time value.
</summary>
<param name="timeSpan">TimeSpan value to convert.</param>
<returns>Corresponding relative virtual time value.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.TestScheduler.Start``1(System.Func{System.IObservable{``0}},System.Int64,System.Int64,System.Int64)">
<summary>
Starts the test scheduler.
</summary>
<param name="create">Factory method to create an observable sequence.</param>
<param name="created">Virtual time at which to invoke the factory to create an observable sequence.</param>
<param name="subscribed">Virtual time at which to subscribe to the created observable sequence.</param>
<param name="disposed">Virtual time at which to dispose the subscription.</param>
<returns>Testable observer with recordings of notifications that occurred.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.TestScheduler.Start``1(System.Func{System.IObservable{``0}},System.Int64)">
<summary>
Starts the test scheduler.
</summary>
<param name="create">Factory method to create an observable sequence.</param>
<param name="disposed">Virtual time at which to dispose the subscription.</param>
<returns>Testable observer with recordings of notifications that occurred.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.TestScheduler.Start``1(System.Func{System.IObservable{``0}})">
<summary>
Starts the test scheduler.
</summary>
<param name="create">Factory method to create an observable sequence.</param>
<returns>Testable observer with recordings of notifications that occurred.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.TestScheduler.CreateHotObservable``1(Microsoft.Reactive.Testing.Recorded{System.Reactive.Notification{``0}}[])">
<summary>
Creates a hot observable.
</summary>
<param name="messages">Notifications to surface through the created sequence.</param>
<returns>Hot observable exhibiting the specified message behavior.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.TestScheduler.CreateColdObservable``1(Microsoft.Reactive.Testing.Recorded{System.Reactive.Notification{``0}}[])">
<summary>
Creates a cold observable.
</summary>
<param name="messages">Notifications to surface through the created sequence.</param>
<returns>Cold observable exhibiting the specified message behavior.</returns>
</member>
<member name="M:Microsoft.Reactive.Testing.TestScheduler.CreateObserver``1">
<summary>
Creates a testable observer.
</summary>
<returns>New testable observer object.</returns>
</member>
</members>
</doc>