https://github.com/fluentassertions/fluentassertions.reactive
Reactive Testing
https://github.com/fluentassertions/fluentassertions.reactive
Last synced: 5 months ago
JSON representation
Reactive Testing
- Host: GitHub
- URL: https://github.com/fluentassertions/fluentassertions.reactive
- Owner: fluentassertions
- License: apache-2.0
- Created: 2020-05-04T06:10:07.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-11-02T22:35:01.000Z (over 3 years ago)
- Last Synced: 2024-12-21T12:46:50.325Z (6 months ago)
- Language: C#
- Size: 73.2 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FluentAssertions.Reactive
[](https://www.nuget.org/packages/FluentAssertions.Reactive/)
[](https://www.nuget.org/packages/FluentAssertions.Reactive)Extensions for the [Fluent Assertions](https://www.fluentassertions.com) for testing the behaviour of observables.
## Example Usage
```csharp
var observable = Observable.Empty();// observe the sequence
using var observedSequence = observable.Observe();// assert the behaviour of the sequence
observedSequence.Should().Complete();```
More examples can be found in the [unit tests](https://github.com/fluentassertions/fluentassertions.reactive/blob/master/Tests/FluentAssertions.Reactive.Specs/ReactiveAssertionSpecs.cs)