Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 825 Bytes

README.md

File metadata and controls

23 lines (13 loc) · 825 Bytes

FluentAssertions.Reactive

Nuget Nuget

Extensions for the Fluent Assertions for testing the behaviour of observables.

Example Usage

var observable = Observable.Empty<Unit>();

// 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